Skip to content

Commit 9658f04

Browse files
committed
fix: maxheight and maxwidth same as android
1 parent 1f96ff7 commit 9658f04

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ios/Image/ImageCompressorOptions.m

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,8 @@ - (instancetype) init {
5050

5151
if (self) {
5252
self.autoCompress = false;
53-
self.maxWidth = 640;
54-
self.maxHeight = 480;
53+
self.maxWidth = 1280;
54+
self.maxHeight = 1280;
5555
self.quality = 1.0f;
5656
self.input = uri;
5757
self.output = jpg;

0 commit comments

Comments
 (0)