我的位置: 首页 >> App >> App知识

Android实现图片的倒影效果


主要代码如下:

public static Bitmap createReflectedImage(Bitmap originalImage) {

    final int reflectionGap = 4;

    int width = originalImage.getWidth();

    int height = originalImage.getHeight();

    Matrix matrix = new Matrix();

    matrix.preScale(1, -1);

    Bitmap reflectionImage = Bitmap.createBitmap(originalImage, 0,

            height / 2, width, height / 2, matrix, false);

    Bitmap bitmapWithReflection = Bitmap.createBitmap(width,

            (height + height / 2), Config.ARGB_8888);

    Canvas canvas = new Canvas(bitmapWithReflection);

    canvas.drawBitmap(originalImage, 0, 0, null);

    Paint defaultPaint = new Paint();

    canvas.drawRect(0, height, width, height + reflectionGap, defaultPaint);

    canvas.drawBitmap(reflectionImage, 0, height + reflectionGap, null);

    Paint paint = new Paint();

    LinearGradient shader = new LinearGradient(0,

            originalImage.getHeight(), 0, bitmapWithReflection.getHeight()

                    + reflectionGap, 0×70ffffff, 0×00ffffff,

            TileMode.MIRROR);

    paint.setShader(shader);

    paint.setXfermode(new PorterDuffXfermode(Mode.DST_IN));

    canvas.drawRect(0, height, width, bitmapWithReflection.getHeight()

            + reflectionGap, paint);

    return bitmapWithReflection;

}

复制代码

解释一下:

Matrix matrix = new Matrix();

    matrix.preScale(1, -1);

复制代码

实现图片的反转,见Android利用Matrix简单处理图片。

Bitmap reflectionImage = Bitmap.createBitmap(originalImage, 0,

            height / 2, width, height / 2, matrix, false);

翻页:1 2

App知识

客户中心

版权2005-2020    聚卓网络有限公司    电话:18589057325    QQ:2338754269   粤ICP备14021702号

地址:深圳市宝安区 37区龙井一路100号 新乐社区工作站办公大楼侧门6楼(近翻身路、新乐社区健康服务中心)

技术支持: 网站建设