A way that you should be able to draw a shape with GeometryGroup
inside a Path
, and using the shape to create a mask to the image. The shape may be composited with a RectangleGeometry
and a EllipseGeometry
, and the shape should be same size with the image(pay attention that the shape's size is setting same to the image itself not the image control since the image control may have blank space to adapt the ratio of image). Fill the path then will let the Ellipse
parts to show the image.
For example, code as follows:
<Grid>
<Image Source="Assets/caffe1.jpg" Height="200" Canvas.ZIndex="-1" Width="265">
</Image>
<Path Fill="White" Height="200" Width="265">
<Path.Data>
<GeometryGroup>
<EllipseGeometry Center="100,100" RadiusX="100" RadiusY="100"/>
<RectangleGeometry Rect="0,0 265,200" ></RectangleGeometry>
</GeometryGroup>
</Path.Data>
</Path>
</Grid>
And the result:

This way can let you define the image clip to arbitrary shape as what you want, also the image size and clip size are as what you want. More details for how to drawing shapes please reference this article.