我有一个 Android 应用程序将图像加载为位图并将其显示在 ImageView 中。问题是图像似乎具有透明背景;这会导致图像上的一些黑色文本在黑色背景下消失。
如果我将 ImageView 背景设置为白色,则可以使用,但我会在图像上得到丑陋的大边框,它被拉伸以适合父级(实际图像在中间缩放)。
所以 - 我想将位图中的透明像素转换为纯色 - 但我不知道该怎么做!
任何帮助将不胜感激!
谢谢克里斯
如果您将图像作为资源包含在内,最简单的方法是自己在gimp之类的程序中编辑图像。你可以在那里添加你的背景,并确定它会是什么样子,并且不需要在每次加载时修改图像的处理能力。
如果您自己无法控制图像,则可以通过执行类似的操作来修改它,假设您的Bitmap
被称为image
.
Bitmap imageWithBG = Bitmap.createBitmap(image.getWidth(), image.getHeight(),image.getConfig()); // Create another image the same size
imageWithBG.eraseColor(Color.WHITE); // set its background to white, or whatever color you want
Canvas canvas = new Canvas(imageWithBG); // create a canvas to draw on the new image
canvas.drawBitmap(image, 0f, 0f, null); // draw old image on the background
image.recycle(); // clear out old image
您可以遍历每个像素并检查它是否透明。
像这样的东西。(未经测试)
Bitmap b = ...;
for(int x = 0; x<b.getWidth(); x++){
for(int y = 0; y<b.getHeight(); y++){
if(b.getPixel(x, y) == Color.TRANSPARENT){
b.setPixel(x, y, Color.WHITE);
}
}
}