Android位图质量问题

时间:2012-05-12 23:26:09

标签: android bitmap

在我的应用程序中,绘制位图就好像颜色是一些质量较低的类型。如果我使用图库应用程序加载背景图像,它加载很好,看起来不是它的超低质量。我用来加载和绘制图像的代码很简单:

//Code for initializing the Bitmap
Bitmap bitmap = Bitmap.createScaledBitmap(BitmapFactory.decodeResource(getResources(), R.drawable.none), (int) (canvas.getWidth() * compression), (int) (canvas.getHeight() * compression), true);
//...
//Code for drawing this Bitmap
canvas.drawBitmap(bitmap, null, new RectF(0, 0, canvas.getWidth(), canvas.getHeight()), null);

如果代码中没有任何内容告诉您出了什么问题,我制作了一张图片,比较图像在计算机或其他图像查看器上的实际外观,以及它在应用程序中的外观。 Top image is the app on the phone, bottom image is what the background image actually looks like. Notice the lines on the top image. What is up with that?

1 个答案:

答案 0 :(得分:5)

问题与Bad image quality after resizing/scaling bitmap

有些相似

尝试禁用缩放,在屏幕外位图中调整大小并确保位图为32位(ARGB888):

Options options = new BitmapFactory.Options();
options.inScaled = false;
options.inDither = false;
options.inPreferredConfig = Bitmap.Config.ARGB_8888;
Bitmap source = BitmapFactory.decodeResource(a.getResources(), path, options);

可以在Quality problems when resizing an image at runtime

找到关于图像缩放/处理的另一个好的和完整的答案