我正在尝试合并 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,并将其放在主要活动中进行测试