我用安卓设备上的相机拍摄了一张照片。使用的相机应用程序是随股票Android一起提供的默认相机应用程序。我想在安卓平台上将.jpeg图像压缩成.heic文件格式。用户应该能够在android平台上查看相同的。
发布于 2017-10-24 21:11:22
试试这个库,也许它会有帮助:Heif Reader
HeifReader.initialize(this);
// decode Bitmap from HEIF raw resource
Bitmap bmp = HeifReader.decodeResource(this.getResources(), R.raw.heif_data);
// draw Bitmap on ViewImage
imageView.setImageBitmap(bmp);发布于 2020-09-17 22:50:19
可以使用Glide查看HEIF Glide source code comment
https://stackoverflow.com/questions/46464878
复制相似问题