我已经尝试了几种不同的方法让它发挥作用,但已经停止了。我从相机中取出照片并用覆盖图保存。
要合并图像,我已经研究了如何使用两个位图和一个类似的画布:
Bitmap combined = Bitmap.createBitmap(mImage.getWidth(), mImage.getHeight(), null);
Canvas canvas = new Canvas(combined);
canvas.drawBitmap(image, new Matrix(), null);
canvas.drawBitmap(mOverlay, 0,0,null);
output = new FileOutputStream(new File(mFile.getPath(), mFileName + "(overlay).jpg" ));
output.write(bytes);
output.close();
问题是我使用的是camera2,它会返回一个Image。我还没有找到将图像转换为位图的方法。我尝试保存图像然后使用BitmapFactory重新加载它,但经常以OutOfMemory异常结束。
有人有办法解决这个问题吗?
更新
Bitmap image = Bitmap.createBitmap(mImage.getWidth(),mImage.getHeight(), Bitmap.Config.ARGB_8888);
image.copyPixelsFromBuffer(mImage.getPlanes()[0].getBuffer().rewind());
我在另一个答案中偶然发现了这个问题,但是我得到了一个Buffer not large enough for pixels
例外,即使我指定的缓冲区比我们需要的还要大8倍。
答案 0 :(得分:1)
我自己研究了如何自己完成这项工作,每一步都有很多不同的答案。考虑到我需要在我的应用程序中操作的位图数量,这是一个试验和错误。
这样做的代码示例如下:
ByteBuffer buffer = capturedImage.getPlanes()[0].getBuffer();
byte[] bytes = new byte[buffer.remaining()];
try {
Bitmap imageBitmap = BitmapFactory.decodeByteArray(bytes, 0, bytes.length, new BitmapFactory.Options()).copy(Bitmap.Config.RGB_565, true);
Bitmap combined = Bitmap.createBitmap(imageBitmap, 0, 0, imageBitmap.getWidth(), imageBitmap.getHeight());
imageBitmap.recycle();
//overlay needs to be scaled to image size
Bitmap scaledBitmap = Bitmap.createScaledBitmap(mOverlay, imageBitmap.getWidth(), imageBitmap.getHeight(), false);
mOverlay.recycle();
Canvas canvas = new Canvas(combined);
canvas.drawBitmap(scaledBitmap, 0, 0, new Paint());
output = new FileOutputStream(new File(path));
combined.compress(Bitmap.CompressFormat.JPEG, 100, output);
output.close();
combined.recycle();
} catch (Exception ex) {
Log.d(TAG, "Unable to combine and save images. " + ex.getMessage());
}