Image compression for Android without full memory loading

Is there a way to compress an image without fully loading it into memory? As far as I understand BitmapFactory.decodeStream , and similar methods load everything into memory, and only after loading the whole image can it be compressed using Bitmap.compress

My task is to send an image from android to the server

+6
source share

All Articles