有没有办法在不拉伸的情况下增加位图的宽度(或高度)?基本上,我有一个200x100的位图,我希望通过在左边添加50(白色/透明)像素和在右边添加50个像素使其成为正方形(200x200)。
我不想在屏幕上绘制这个位图,所以理想情况下,我应该以“智能”的方式使用转换矩阵或类似的东西,但我无法弄明白... < / p>
答案 0 :(得分:3)
您可以尝试这样的事情:
// creating a dummy bitmap
Bitmap source = Bitmap.createBitmap(100, 200, Bitmap.Config.ARGB_8888);
Bitmap background;
Canvas canvas;
if(source.getHeight() == source.getWidth()) // do nothing
return;
// create a new Bitmap with the bigger side (to get a square)
if(source.getHeight() > source.getWidth()) {
background = Bitmap.createBitmap(source.getHeight(), source.getHeight(), Bitmap.Config.ARGB_8888);
canvas = new Canvas(background);
// draw the source image centered
canvas.drawBitmap(source, source.getHeight()/4, 0, new Paint());
} else {
background = Bitmap.createBitmap(source.getWidth(), source.getWidth(), Bitmap.Config.ARGB_8888);
canvas = new Canvas(background);
// draw the source image centered
canvas.drawBitmap(source, 0, source.getWidth()/4, new Paint());
}
source.recycle();
canvas.setBitmap(null);
// update the source image
source = background;
注意:黑色边框不是图像的一部分。我选择深红色作为背景颜色来查看图像的实际尺寸,并将其与黑色和源图像的颜色(总是绘制在中心)区分开来。
通过在Canvas上绘制它,它在屏幕上不可见。我使用ImageView来测试代码。
这是我得到的输出w = 200,h = 100:
这是我得到的输出w = 100,h = 200: