我想通过重叠创建具有两个不同图像的组合图像.

为此,我的代码是

ImageView image = (ImageView) findViewById(R.id.imageView1);

Drawable drawableFore = getResources().getDrawable(R.drawable.foreg);

Drawable drawableBack = getResources().getDrawable(R.drawable.backg);

Bitmap bitmapFore = ((BitmapDrawable) drawableFore).getBitmap();

Bitmap bitmapBack = ((BitmapDrawable) drawableBack).getBitmap();

Bitmap scaledBitmapFore = Bitmap.createScaledBitmap(bitmapFore, 35, 35, true);

Bitmap scaledBitmapBack = Bitmap.createScaledBitmap(bitmapBack, 45, 45, true);

Bitmap combineImages = overlay(scaledBitmapBack, scaledBitmapFore);

image.setImageBitmap(combineImages);

overlay()方法是

public static Bitmap overlay(Bitmap bmp1, Bitmap bmp2)

{

try

{

Bitmap bmOverlay = Bitmap.createBitmap(bmp1.getWidth(), bmp1.getHeight(), bmp1.getConfig());

Canvas canvas = new Canvas(bmOverlay);

canvas.drawBitmap(bmp1, new Matrix(), null);

canvas.drawBitmap(bmp2, 0, 0, null);

return bmOverlay;

} catch (Exception e)

{

// TODO: handle exception

e.printStackTrace();

return null;

}

}

情况1:在这种情况下,overlay方法返回null.

案例2:但是当我切换图像时,我使用背景图像设置前景,前景图像设置为背景,然后代码工作正常.

但我希望第一种情况应该正常,但事实并非如此.

我不明白为什么会发生这种情况.

请帮忙

Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐