Hello,
You could use Clip
property to crop image on MAUI.
For instance, you could use the following code to crop the image:
var clip1 = new RectangleGeometry(new Rect(100, 100, 100, 100));
image.Clip = clip1;
Please refer to Clip with a Geometry to get more details.
Best Regards,
Alec Liu.
If the answer is the right solution, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.