我在 Android 活动中有一个布局,我将其转换为图像,然后在不同的社交网络上分享。问题是质量根本不好,图像上有伪影,质量取决于屏幕的大小。
有什么办法可以提高质量吗?我无法将完整的布局图像作为静态图像存储在应用程序目录中,我需要在旅途中生成它。
这是我用来将布局转换为 PNG 的代码。
Bitmap bitmap = null;
try {
bitmap = Bitmap.createBitmap(dashboardView.getWidth(),
dashboardView.getHeight(), Bitmap.Config.ARGB_4444);
dashboardView.draw(new Canvas(bitmap));
} catch (Exception e) {
// Logger.e(e.toString());
}
FileOutputStream fileOutputStream = null;
File path = Environment
.getExternalStorageDirectory();
File file = new File(path, "wayzupDashboard" + ".png");
try {
fileOutputStream = new FileOutputStream(file);
} catch (FileNotFoundException e) {
e.printStackTrace();
}
BufferedOutputStream bos = new BufferedOutputStream(fileOutputStream);
bitmap.compress(CompressFormat.PNG, 100, bos);
try {
bos.flush();
bos.close();
fileOutputStream.flush();
fileOutputStream.close();
} catch (IOException e) {
e.printStackTrace();
}
编辑:我的错,我离开了 ARGB_4444,事实上我在 SO 上发布问题之前做了很多测试,我只是忘了把 ARGB_8888 放进去。在小屏幕的 Android 手机上图像质量仍然很差。如果我能告诉在捕获布局时始终使用 HDPI drawable 就好了。