码迷,mamicode.com
首页 >  
搜索关键字:getwidth    ( 213个结果
光照效果函数
// 光照效果函数 public static Bitmap changeToLight(Bitmap bitmap) { int width = bitmap.getWidth(); int height = bitmap.getHeight(); int pixColor = 0; in...
分类:其他好文   时间:2014-07-16 19:37:15    阅读次数:183
哈哈镜效果
//哈哈镜效果 public static Bitmap changeToHaha(Bitmap bitmap){ int centerX = bitmap.getWidth() / 2; int centerY = bitmap.getHeight() / 2; float radius =...
分类:其他好文   时间:2014-07-16 19:36:51    阅读次数:193
铸融效果
// 铸融效果 public static Bitmap changeToMolten(Bitmap bitmap) { int width = bitmap.getWidth(); int height = bitmap.getHeight(); int dst[] = new int[wi...
分类:其他好文   时间:2014-07-16 19:36:35    阅读次数:141
怀旧效果函数
// 怀旧效果函数 public static Bitmap changeToOld(Bitmap bitmap) { int width = bitmap.getWidth(); int height = bitmap.getHeight(); Log.i("OldFilter", "wid...
分类:其他好文   时间:2014-07-16 19:36:26    阅读次数:178
冰冻效果
//冰冻效果 public static Bitmap changeToIce(Bitmap bitmap){ int width = bitmap.getWidth(); int height = bitmap.getHeight(); int dst[] = new int[w...
分类:其他好文   时间:2014-07-16 19:32:04    阅读次数:222
LOMO效果
//LOMO效果 public static Bitmap changeToLomo(Bitmap bitmap) { int width = bitmap.getWidth(); int height = bitmap.getHeight(); int...
分类:其他好文   时间:2014-07-16 19:31:24    阅读次数:245
柔化效果
//柔化效果 public static Bitmap changeToSoftness(Bitmap bitmap){ int width = bitmap.getWidth(); int height = bitmap.getHeight(); int dst[] = new ...
分类:其他好文   时间:2014-07-14 10:12:10    阅读次数:181
黑白效果函数
// 黑白效果函数 public static Bitmap changeToGray(Bitmap bitmap,boolean r, boolean g, boolean b) { int width, height; width = bitmap.getWidth(); height...
分类:其他好文   时间:2014-07-14 10:09:38    阅读次数:180
反色效果函数
// 反色效果函数 public static Bitmap chageToInvert(Bitmap bitmap) { int width = bitmap.getWidth(); int height = bitmap.getHeight(); int colorArray[] = ...
分类:其他好文   时间:2014-07-14 10:08:53    阅读次数:327
油画效果
// 油画效果 public static Bitmap changeToOil(Bitmap bitmap) { int width = bitmap.getWidth(); int height = bitmap.getHeight(); int dst[] = new int[width...
分类:其他好文   时间:2014-07-12 13:48:45    阅读次数:177
213条   上一页 1 ... 18 19 20 21 22 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!