0

我想要什么:用两个位图创建图像,在第一个位图下放置第二个位图。


此时我使用此代码

public static Bitmap combineImages(Bitmap background, Bitmap foreground, float disFromTheTopPercent) {

        int width = background.getWidth(), height = background.getHeight();
        Bitmap cs = Bitmap.createBitmap(width, height, Bitmap.Config.ARGB_8888);
        Canvas comboImage = new Canvas(cs);
        background = Bitmap.createScaledBitmap(background, width, height, true);
        comboImage.drawBitmap(background, 0, 0, null);

        int top = (int) (disFromTheTopPercent * height);
        int left = 0;

        comboImage.drawBitmap(foreground, left, top, null);

        return cs;
    }

糟糕的是,它实际上与我 smartfon 中的身高、体重和 dpi 相关联。

当我使用具有 5 英寸屏幕和 6 英寸屏幕的 smartfone 时,它​​是不同的,无论不同的屏幕,这看起来都必须相同。

视觉呈现

感谢帮助!

4

1 回答 1

1

试试这个代码:

public static Bitmap combineImages(Bitmap c, Bitmap s) {
    Bitmap cs;
    int width, height;

    width = s.getWidth();
    height = c.getHeight() + s.getHeight();

    cs = Bitmap.createBitmap(width, height, Bitmap.Config.ARGB_8888);

    Canvas comboImage = new Canvas(cs);

    comboImage.drawBitmap(c, 0f, 0f, null);
    comboImage.drawBitmap(s, 0f, c.getHeight(), null);

    return cs;
}
于 2019-03-20T11:31:53.633 回答