Closed acedward closed 9 years ago
Hi,
It looks like the line
bitmap = BitmapFactory.decodeFile(fileImage);
is missing the second argument:
bitmap = BitmapFactory.decodeFile(fileImage, options);
(I was getting some out of memory issues)
https://github.com/coomar2841/image-chooser-library/blob/dev/image-chooser-library/src/main/java/com/kbeanie/imagechooser/threads/MediaProcessorThread.java#L204
Yeah, you are right. Will fix this right away.
Done.
Hi,
It looks like the line
is missing the second argument:
(I was getting some out of memory issues)
https://github.com/coomar2841/image-chooser-library/blob/dev/image-chooser-library/src/main/java/com/kbeanie/imagechooser/threads/MediaProcessorThread.java#L204