1

我正在尝试合并 2 张图片,所以我搜索并看到了一个代码片段,在这里合并了 android 中的两个 png 文件

Bitmap bottomImage = new BitmapFactory.decodeFile("myFirstPNG.png");
Bitmap topImage = new BitmapFactor.decodeFile("myOtherPNG.png");


Canvas comboImage = new Canvas(bottomImage);
// Then draw the second on top of that
comboImage.drawBitmap(topImage, 0f, 0f, null);

// bottomImage is now a composite of the two. 

// To write the file out to the SDCard:
OutputStream os = null;
try {
    os = new FileOutputStream("/sdcard/DCIM/Camera/" + "myNewFileName.png");
    image.compress(CompressFormat.PNG, 50, os)
} catch(IOException e) {
    e.printStackTrace();
}

我尝试使用它,但由于某种原因Bitmap bottomImage = new BitmapFactory.decodeFile("myFirstPNG.png"); 给出了一个错误,即 BitmapFactory 无法解析为一种类型,但我已经拥有了两者

import android.graphics.Bitmap;
import android.graphics.BitmapFactory;

我正在使用phonegap,并将其放在主要活动中进行测试

4

1 回答 1

4

decodeFile是一个静态方法,需要在类范围内调用如下:

Bitmap bottomImage = BitmapFactory.decodeFile("myFirstPNG.png");
Bitmap topImage = BitmapFactor.decodeFile("myOtherPNG.png");

(注意new关键字已被删除)

于 2013-02-22T05:20:15.400 回答