基本上,我有一个矩形位图,想要创建一个方形尺寸的新位图,其中包含矩形位图。
因此,例如,如果源位图的宽度为100且高度为400,我想要一个宽度为400且高度为400的新位图。然后,绘制位于此新位图内部的源位图(有关更好的理解,请参阅附图)。
下面的代码创建了方形位图,但源位图没有被绘制到它中。结果,我留下了一个完全黑色的位图。
以下是代码:
Bitmap sourceBitmap = BitmapFactory.decodeFile(sourcePath);
Bitmap resultBitmap= Bitmap.createBitmap(sourceBitmap.getHeight(), sourceBitmap.getHeight(), Bitmap.Config.ARGB_8888);
Canvas c = new Canvas(resultBitmap);
Rect sourceRect = new Rect(0, 0, sourceBitmap.getWidth(), sourceBitmap.getHeight());
Rect destinationRect = new Rect((resultBitmap.getWidth() - sourceBitmap.getWidth())/2, 0, (resultBitmap.getWidth() + sourceBitmap.getWidth())/2, sourceBitmap.getHeight());
c.drawBitmap(resultBitmap, sourceRect, destinationRect, null);
// save to file
File mediaStorageDir = new File(Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_PICTURES), "MyApp");
File file = new File(mediaStorageDir.getPath() + File.separator + "result.jpg");
try {
result.compress(CompressFormat.JPEG, 100, new FileOutputStream(file));
} catch (FileNotFoundException e) {
e.printStackTrace();
}
知道我做错了吗?
答案 0 :(得分:15)
试试这个:
private static Bitmap createSquaredBitmap(Bitmap srcBmp) {
int dim = Math.max(srcBmp.getWidth(), srcBmp.getHeight());
Bitmap dstBmp = Bitmap.createBitmap(dim, dim, Config.ARGB_8888);
Canvas canvas = new Canvas(dstBmp);
canvas.drawColor(Color.WHITE);
canvas.drawBitmap(srcBmp, (dim - srcBmp.getWidth()) / 2, (dim - srcBmp.getHeight()) / 2, null);
return dstBmp;
}
答案 1 :(得分:2)
Bitmap
提出了错误的Canvas
。如果它在将来帮助任何人,请记住Canvas已经附加并将绘制到您在其构造函数中指定的位图。所以基本上:
此:
c.drawBitmap(resultBitmap, sourceRect, destinationRect, null);
实际应该是:
c.drawBitmap(sourceBitmap, sourceRect, destinationRect, null);