Questions tagged [flutter-image-picker]
75 questions
4
votes
0 answers
How to stop iOS from compressing video when picked with Flutter image_picker?
Using Flutter and the image_picker package.
When selecting or recording a video on iOS the video is compressed before returning to the app. What I would like is the full, uncompressed video.
Furthermore, if a user locks their screen while the video…

spatialbits
- 81
- 4
3
votes
0 answers
Flutter image_picker plugin crash on android 12 take a image HEIF
I have a problem on a big application (not reproductible with the image_picker sample) when some users take a picture, the application crash. I don't have a log because the debugger stop when the problem arrive and the application send nothing to…

lich0n
- 111
- 1
- 4
2
votes
1 answer
Unable to install the latest version of image_picker in a Flutter project
I installed image_picker in my Flutter app through $ flutter pub add image_picker.
Currently, the latest version is 1.0.1, but in my pubspec.yaml file i get version 0.7.2+1.
Since "Starting with version 0.8.2 of the image_picker plugin, new methods…

VicAl02
- 23
- 4
2
votes
3 answers
Image.file is not supported on Flutter Web. How to get image from gallery/camera for the Flutter Web?
I get the error below while running the Flutter app on the Chrome web browser.
I picked an Image from the gallery:
Future getImage() async {
try {
final image = await ImagePicker().pickImage(source: ImageSource.gallery);
if (image…

Sweta Jain
- 3,248
- 6
- 30
- 50
1
vote
0 answers
Flutter Riverpod project with laravel backend - Difficulties retrieving image from backend
I am developing flutter app using riverpod as state management and laravel framework for backend. Currently i am working on implementing logic for saving user profile picture by selecting it with Image Picker package and sending it to the backend…

Atanas Nankinski
- 45
- 4
1
vote
0 answers
Why does my flutter app crash when trying to upload an image on Mi phones using image_picker_plus?
I am Encountering an issue with Flutter upload image functionality. when I attempt to upload using Mi brand phones, the camera abruptly shuts down and the application restarts. Currently, I am using the Redmi Note 7S, and this problem seems to be…

Prayul Bolya
- 11
- 1
1
vote
0 answers
Flutter's image_picker package: How to override the default bottom menu bar colors on review photo screen?
I'm using Flutter imge_picker package, and it works well. But I'm unable to customize the bottom menu bar and text colors:
Screenshot here
Is there a way to customize that bottom black background, "Retake" and "Use photo" colors?
The screenshot is…

Anatolii
- 21
- 3
1
vote
0 answers
Flutter I can not update the profile picture
I am trying to built a profile picture and also using a firestore. I can not update the selected profile picture on the screen I need to hot refresh for it. The question is how can I update it and display it on the screen when the user select…

Ata Berk Çinetçi
- 25
- 5
1
vote
0 answers
Flutter - select and image from device gallery or take a picture from camera
I'm implementing a screen to upload an image to my server. I'm looking to create a screen that looks something like this:
Image pick screen wireframe
The idea is that you are able to either select an image from your gallery (just one at a time) or…

Rafael Rivero
- 11
- 2
1
vote
0 answers
Why flutter image picker is so slow, and how to fix it?
I am using image_picker flutter package, and not very happy with its performance. Picking any video above two minute is very slow. It can easily take over 30 seconds while the application seemingly freezes, and then goes through picking the image.
I…

Arash
- 11,697
- 14
- 54
- 81
1
vote
2 answers
Delete / remove selected image from gallery Flutter
I'm creating a flutter app which hide your photos. I've used image_picker package to select image form gallery. And successfully copied the image to my application storage. Now I wanna delete original image from the gallery. How I can do…

Mr Sindhu
- 316
- 2
- 11
1
vote
1 answer
flutter image_picker app crash after select image
I'm using image picker and get this error after I select an image from gallery.
E/AndroidRuntime( 1465): FATAL EXCEPTION: main
E/AndroidRuntime( 1465): Process: com.hoeis.report_project, PID: 1465
E/AndroidRuntime( 1465):…

ChristianPWH Work
- 11
- 3
1
vote
1 answer
Picture taken with camera does not contain location data but gallery images do when using image_picker
I have got an app which includes image_picker to allow the user to choose an image from their gallery or take a photo directly within the app. I need the photo to contain location data so I need the GPS GPSLatitude tag to be inside of the metadata…

Thomasssb1
- 36
- 4
1
vote
2 answers
Flutter: M1 Macbook Pro Image_Picker Error
I'm new to Flutter and would love some help with an error.
While using the image_picker package, I noticed that I'm getting a value of null returned when I try to select an image from ios photo gallery.
(Specifically,…

MSP
- 19
- 2
1
vote
1 answer
flutter image picker crashing
I am trying to use the image_picker on flutter app everything is fine until gallery open i choose the image then the app will crash and restart.
before this it was working fine like 1 month ago but now it is not. is there any solution
this is my…

Muaadh Abdulmalek
- 11
- 2