image_gallery_saver icon indicating copy to clipboard operation
image_gallery_saver copied to clipboard

Raise a bug

Open HeroLBJ opened this issue 3 years ago • 0 comments

in Android

file ImageGallerySaverPlugin.kt

method saveImageToGallery()

` val file = generateFile("jpg", name = name)

bmp.compress(Bitmap.CompressFormat.JPEG, quality, fos) ` image is jpg ,no png, i need alpha, so

val file = generateFile("jpg", name = name) ==> val file = generateFile("png", name = name) bmp.compress(Bitmap.CompressFormat.JPEG, quality, fos) ==> bmp.compress(Bitmap.CompressFormat.PNG, quality, fos)

HeroLBJ avatar Sep 24 '21 10:09 HeroLBJ