diff --git a/PictureChooser/MvvmCross.Plugins.PictureChooser.Touch/UIImageHelpers.cs b/PictureChooser/MvvmCross.Plugins.PictureChooser.Touch/UIImageHelpers.cs index 76bb1a4a..7e5cb2a8 100644 --- a/PictureChooser/MvvmCross.Plugins.PictureChooser.Touch/UIImageHelpers.cs +++ b/PictureChooser/MvvmCross.Plugins.PictureChooser.Touch/UIImageHelpers.cs @@ -55,7 +55,7 @@ public static UIImage ImageToFitSize(this UIImage image, CGSize fitSize) var destRect = new CGRect(0, 0, (nfloat) scaledWidth, (nfloat) scaledHeight); - UIGraphics.BeginImageContextWithOptions(destRect.Size, false, 0); + UIGraphics.BeginImageContextWithOptions(destRect.Size, false, 1); image.Draw(destRect); var newImage = UIGraphics.GetImageFromCurrentImageContext();