iOS/macOS Images not cropped inside of a Frame
See original GitHub issueDescription

Take https://github.com/dotnet-presentations/dotnet-maui-workshop/tree/main/Finish and run on iOS or mac catalyst
<Frame
Grid.RowSpan="2"
Grid.Column="1"
Margin="0,80,0,0"
HeightRequest="160"
WidthRequest="160"
HorizontalOptions="Center"
Padding="0"
CornerRadius="80">
<Image
Aspect="AspectFill"
HeightRequest="160"
HorizontalOptions="Center"
VerticalOptions="Center"
Source="{Binding Monkey.Image}"
WidthRequest="160"/>
</Frame>
This should crop like it does on Android/Windows.
Steps to Reproduce
See above^
Version with bug
Release Candidate 2 (current)
Last version that worked well
Unknown/Other
Affected platforms
iOS, macOS
Affected platform versions
All
Did you find any workaround?
Have to set
IsClippedToBounds="True"
This should be consistent though between all platforms
Relevant log output
No response
Issue Analytics
- State:
- Created a year ago
- Comments:10 (5 by maintainers)
Top Results From Across the Web
Crop and straighten photos in Photos on Mac
In Photos on your Mac, crop a photo to improve its composition or remove unwanted areas. Straighten photos that were taken at an...
Read more >ios - Crop image according to frame of any View
I think the simplest way to achieve it is the following: extension UIImage { func crop(to rect: CGRect) -> UIImage?
Read more >How To Crop Photos and Videos In iMovie - YouTube
https://macmost.com/e-2637 When you add a photo to an iMovie project, the photo will rarely fit right into the video frame but will instead ......
Read more >How To Crop Photos On iPhone / iPad - YouTube
Your iPhone has a built in photo editor that can easily crop any ... These photos are cropped inside the Photos app on...
Read more >How to Crop an Image in Mac OS X with Preview
Cropping a Picture with Preview in Mac OS X. Open the image file you want to crop into the Preview app in Mac...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
@jamesmontemagno ok, thanks for your update. remove the setting
IsClippedToBounds="True"
, can see the image not cropped inside of a Frame.Similar results with MacCatalyst and iOS
With IsClippedToBounds
Without IsClippedToBounds