Bonjour,
Quand j'importe l'Australie sous ce format j'obtiens une image vraiment pas bonne :

Code XML : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?xml version="1.0" encoding="utf-8"?>
<ResourceDictionary  xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:vu="clr-namespace:Cow.Vue">
    <DrawingImage x:Key="Carte">
        <DrawingImage.Drawing>
            <DrawingGroup>
                <GeometryDrawing x:Name="EAU" Brush="Cyan">
                    <GeometryDrawing.Geometry>
                        <RectangleGeometry Rect = "0,0,1330,1200"/>
                    </GeometryDrawing.Geometry>
                </GeometryDrawing>
                <GeometryDrawing x:Name="AUS" Brush="Red" Geometry="F1 M 142.885,366.542L141.722,366.009 140.695,365.629 140.438,365.609 140.174,365.731… z" >
                    <GeometryDrawing.Pen>
                        <Pen Thickness="1" Brush="Black" />
                    </GeometryDrawing.Pen>
                </GeometryDrawing>
            </DrawingGroup>
        </DrawingImage.Drawing>
    </DrawingImage>
</ResourceDictionary>

Nom : Aus1.png
Affichages : 248
Taille : 25,1 Ko

Par contre si je fais cela directement dans mon xaml, mon image est impeccable :

Code XAML : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
 
                <Grid Background="Transparent" >
                    <!--<Image x:Name="Im_Carte" Source="{DynamicResource Carte}" />-->
                    <Canvas Background="Cyan" Height="1330" Width="1200" >
                        <Path Fill="Red" Stroke="Black" StrokeThickness="0.25" StrokeStartLineCap="Round" StrokeEndLineCap="Round" StrokeDashCap="Round" StrokeLineJoin="Round" StrokeMiterLimit="4">
                            <Path.Data>
                                <PathGeometry FillRule="Nonzero" Figures="M142.885,366.542L141.722,366.009 140.695,365.629 140.438,365.609 140.174,365.731... z" />
                            </Path.Data>
                        </Path>
                    </Canvas>
                </Grid>

Nom : Aus2.png
Affichages : 222
Taille : 15,8 Ko

Question : Comment insérer un path dans un ResourceDictionary pour avoir une image impeccable ?
Merci pour votre aide

PS : j'ai copié juste le début des coordonnées pour alléger le message.