Reputation: 36
bitmap = Bitmap.createBitmap(mWidth+rowPadding/pixelStride, mHeight, Bitmap.Config.ARGB_8888);
bitmap.copyPixelsFromBuffer(buffer);
bitmap.compress(Bitmap.CompressFormat.PNG, 100, fos);
Upvotes: 1
Views: 188
Reputation: 11
The problem is in the compression of your image.
Check out the link below
Upvotes: 0