-
Notifications
You must be signed in to change notification settings - Fork 29.2k
Closed
flutter/plugins
#4389Labels
P2Important issues not at the top of the work listImportant issues not at the top of the work listfound in release: 2.0Found to occur in 2.0Found to occur in 2.0has reproducible stepsThe issue has been confirmed reproducible and is ready to work onThe issue has been confirmed reproducible and is ready to work onp: image_pickerThe Image Picker plugin.The Image Picker plugin.packageflutter/packages repository. See also p: labels.flutter/packages repository. See also p: labels.platform-webWeb applications specificallyWeb applications specificallyr: fixedIssue is closed as already fixed in a newer versionIssue is closed as already fixed in a newer version
Description
I am trying to compress a file before upload in flutter web. However the image isnt being compressed at least not when i readAsBytes this obviously is an issue when uploading images.
final pickedFile = await picker.getImage(
source: ImageSource.gallery,
imageQuality: 10,
maxHeight: 10,
maxWidth: 10);
_webImage = await pickedFile.readAsBytes();
print(pickedFile.length); // 2360369 ~ 2.3 mb ie the original image size
When getImage is called i expect the image that im getting would be reduced to whatever i compress it to.
kasyr, rafalplonka and akhurange
Metadata
Metadata
Assignees
Labels
P2Important issues not at the top of the work listImportant issues not at the top of the work listfound in release: 2.0Found to occur in 2.0Found to occur in 2.0has reproducible stepsThe issue has been confirmed reproducible and is ready to work onThe issue has been confirmed reproducible and is ready to work onp: image_pickerThe Image Picker plugin.The Image Picker plugin.packageflutter/packages repository. See also p: labels.flutter/packages repository. See also p: labels.platform-webWeb applications specificallyWeb applications specificallyr: fixedIssue is closed as already fixed in a newer versionIssue is closed as already fixed in a newer version