码迷,mamicode.com
首页 >  
搜索关键字:height    ( 24230个结果
羽化效果
// 羽化效果 public static Bitmap changeToEclosion(Bitmap bitmap) { int width = bitmap.getWidth(); int height = bitmap.getHeight(); int dst[] = new int[...
分类:其他好文   时间:2014-07-16 19:45:44    阅读次数:171
卡通效果
// 卡通效果 public static Bitmap changeToCarton(Bitmap bitmap) { int width = bitmap.getWidth(); int height = bitmap.getHeight(); int dst[] = new int[wi...
分类:其他好文   时间:2014-07-16 19:40:27    阅读次数:158
光照效果函数
// 光照效果函数 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 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 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
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!