我有一个Imageview,我想在用户点击名为"翻转图片"的按钮时水平翻转图片。 。当用户第二次点击此按钮时,它应该返回到原始状态,换句话说就是向后翻转。
所以它应该重复这种行为。我发现这个有用的代码可以在不使用外部库的情况下翻转图像视图,但不知道如何翻转:
以下是代码:
public Bitmap flipImage(Bitmap src, int type) {
// create new matrix for transformation
Matrix matrix = new Matrix();
// if vertical
if(type == FLIP_VERTICAL) {
// y = y * -1
matrix.preScale(1.0f, -1.0f);
}
// if horizonal
else if(type == FLIP_HORIZONTAL) {
// x = x * -1
// unknown type
} else {
return null;
}
// return transformed image
return Bitmap.createBitmap(src, 0, 0, src.getWidth(), src.getHeight(), matrix, true);
}
以下是我尝试将其应用于名为FlipImage的Image视图
Flipimage.setImageBitmap(flipImage(BitmapFactory.decodeResource(getResources(), R.drawable.doom01),2));
答案 0 :(得分:0)
我在测试和尝试时发现了自己的答案: 只需翻转它将翻转图像视图的值:这是这一行中的魔力:
首次点击:
matrix.preScale(-1.0f, 1.0f);
第二次点击:
matrix.preScale(1.0f, -1.0f);
所以你可以初始化计数器,也可以使用android的Toggle按钮。
答案 1 :(得分:0)
这是一个很好的代码,可以帮助您解决问题。将位图图像传递给函数,函数返回位图数据类型。 ... 或download source code
public Bitmap FlipHorizontally(Bitmap originalImage) {
// The gap we want between the flipped image and the original image
final int flipGap = 4;
int width = originalImage.getWidth();
int height = originalImage.getHeight();
// This will not scale but will flip on the Y axis
Matrix matrix = new Matrix();
matrix.preScale(-1, 1);
// Create a Bitmap with the flip matrix applied to it.
// We only want the bottom half of the image
Bitmap flipImage = Bitmap.createBitmap(originalImage, 0,0 , width, height, matrix, true);
// Create a new bitmap with same width but taller to fit reflection
Bitmap bitmapWithFlip = Bitmap.createBitmap((width + width + flipGap), height, Bitmap.Config.ARGB_8888);
// Create a new Canvas with the bitmap that's big enough for
Canvas canvas = new Canvas(bitmapWithFlip);
//Draw original image
canvas.drawBitmap(originalImage, 0, 0, null);
//Draw the Flipped Image
canvas.drawBitmap(flipImage, width+flipGap, 0, null);
return bitmapWithFlip;
}