我正在使用ExifInterface保存用于图像描述的信息。但是因为屏幕截图保存为.png,而ExifInterface不适用于.png,所以我无法保存屏幕截图的图像描述。
我有两个选择:
答案 0 :(得分:1)
您可以利用View的图形缓存。
myView.setDrawingCacheEnabled(true);
Bitmap b = view.getDrawingCache();
b.compress(CompressFormat.JPEG, 95, new FileOutputStream("/some/location/image.jpg"))
view
是您的视图。 95
是JPG压缩的质量。文件输出流就是这样。