Skip to content

Commit fe298cf

Browse files
committed
Set scale instead of generating at device resolution
1 parent 4d9cb70 commit fe298cf

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

ios/src/Compression.m

+3-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,9 @@ - (ImageResult*) compressImageDimensions:(UIImage*)image
5353
}
5454
CGSize newSize = CGSizeMake(newWidth, newHeight);
5555

56-
UIGraphicsImageRenderer *renderer = [[UIGraphicsImageRenderer alloc] initWithSize:newSize];
56+
UIGraphicsImageRendererFormat *format = [UIGraphicsImageRendererFormat new];
57+
format.scale = 1;
58+
UIGraphicsImageRenderer *renderer = [[UIGraphicsImageRenderer alloc] initWithSize:newSize format:format];
5759
UIImage *resizedImage = [renderer imageWithActions:^(UIGraphicsImageRendererContext * _Nonnull rendererContext) {
5860
[image drawInRect:CGRectMake(0, 0, newSize.width, newSize.height)];
5961
}];

0 commit comments

Comments
 (0)