首页 > 其他 > 详细

羽化效果

时间:2014-07-16 19:45:18      阅读:193      评论:0      收藏:0      [点我收藏+]

// 羽化效果
public static Bitmap changeToEclosion(Bitmap bitmap) {
int width = bitmap.getWidth();
int height = bitmap.getHeight();
int dst[] = new int[width * height];
bitmap.getPixels(dst, 0, width, 0, 0, width, height);

int ratio = width > height ? height*32768/width : width*32768/height;

int cx = width >> 1;
int cy = height >> 1;
int max = cx * cx + cy * cy;
int min = (int) (max * (1 - 0.5f));
int diff = max - min;

int R, G, B;
int pos, pixColor;
for (int y = 0; y < height; y++) {
for (int x = 0; x < width; x++) {
pos = y * width + x;
pixColor = dst[pos];
R = Color.red(pixColor);
G = Color.green(pixColor);
B = Color.blue(pixColor);

int dx = cx - x;
int dy = cy - y;
if (width > height) {
dx = (dx * ratio) >> 15;
} else {
dy = (dy * ratio) >> 15;
}

int distSq = dx * dx + dy * dy;
float v = ((float) distSq / diff) * 255;
R = (int) (R + (v));
G = (int) (G + (v));
B = (int) (B + (v));
R = (R > 255 ? 255 : (R < 0 ? 0 : R));
G = (G > 255 ? 255 : (G < 0 ? 0 : G));
B = (B > 255 ? 255 : (B < 0 ? 0 : B));

dst[pos] = Color.rgb(R, G, B);
}
}
Bitmap processBitmap = Bitmap.createBitmap(width, height, Bitmap.Config.RGB_565);
processBitmap.setPixels(dst, 0, width, 0, 0, width, height);
return processBitmap;
}

羽化效果,布布扣,bubuko.com

羽化效果

原文:http://www.cnblogs.com/clarence/p/3837418.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!