Skip to content Skip to sidebar Skip to footer

Android - Save Bitmap Image On Mobile Storage Without Compressing

The typical way (based on research) for saving bitmap images from a remote url is: Bitmap bmImage = null; InputStream in = new java.net.URL(imageUrl).openStream(); bmImage = Bitma

Solution 1:

Use AndroidBmpUtil as shown in the code below:

new AndroidBmpUtil().save(bmImage, file);

Post a Comment for "Android - Save Bitmap Image On Mobile Storage Without Compressing"