码迷,mamicode.com
首页 > 其他好文 > 详细

冰冻效果

时间:2014-07-16 19:32:04      阅读:222      评论:0      收藏:0      [点我收藏+]

标签:style   color   os   width   for   re   

//冰冻效果
public static Bitmap changeToIce(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);
Log.i("IceStyle", "width="+width + "; height="+height);
int R, G, B, pixel;
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);

pixel = R-G-B;
pixel = pixel*3/2;
if(pixel < 0)
pixel = -pixel;
if(pixel > 255)
pixel = 255;
R = pixel;

pixel = G - B - R;
pixel = pixel * 3 / 2;
if (pixel < 0)
pixel = -pixel;
if (pixel > 255)
pixel = 255;
G = pixel;

pixel = B - R - G;
pixel = pixel * 3 / 2;
if (pixel < 0)
pixel = -pixel;
if (pixel > 255)
pixel = 255;
B = pixel;

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

冰冻效果,布布扣,bubuko.com

冰冻效果

标签:style   color   os   width   for   re   

原文地址:http://www.cnblogs.com/clarence/p/3837429.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!