如何将位图图像lanscape设置为纵向



在我的例子中,我有横向位图。现在我想将此图像设置为人像模式。同时设置图像的背景。如何将此图像设置为无划痕的人像。我可以添加画布作为背景并制作位图吗?

您可以在setRotate和postTranslate之后使用setRectToRect,它不旋转图像,但在人像模式下显示相同的图像。

Bitmap bmp = decodeFile(new File(created_folder + File.separator + "pic00" + (k + 1) + ".jpg"));
Matrix matrix = new Matrix();
float scale = 1024/bmp.getWidth();
float xTranslation = 0.0f, yTranslation = (720 - bmp.getHeight() * scale)/2.0f;
RectF drawableRect = new RectF(0, 0, bmp.getWidth()-100,
bmp.getHeight()-100);
RectF viewRect = new RectF(0, 0, bmp.getWidth(),
bmp.getHeight());
matrix.setRectToRect(drawableRect, viewRect, Matrix.ScaleToFit.CENTER);
matrix.setRotate(90, bmp.getWidth(), bmp.getHeight());
matrix.postTranslate(xTranslation, yTranslation);
matrix.preScale(scale, scale);

有关更多详细信息,请浏览android开发者文档http://developer.android.com/reference/android/media/ExifInterface.html

相关内容

  • 没有找到相关文章

最新更新