2015年6月28日

(3)Bitmap类相关——getPixels

摘要: public void getPixels(int[] pixels, int offset, int stride,int x, int y, int width, int height)获取原Bitmap的像素值存储到pixels数组中。参数:pixels 接收位图颜色值的数组offset 写入... 阅读全文

posted @ 2015-06-28 16:35 Matrixin 阅读(3036) 评论(0) 推荐(0) 编辑

(2)Bitmap类相关——extractAlpha

摘要: 1. public Bitmap extractAlpha()生成只提取了原图的alpha通道的新图,也就是说新的bitmap只有alpha值,rgb值为0。这个函数的作用是获取原图的轮廓,然后可以填充rgb值。因此可以实现阴影,影子,光晕等效果。使用如下的代码片段来验证这个函数:public Bi... 阅读全文

posted @ 2015-06-28 13:13 Matrixin 阅读(1829) 评论(0) 推荐(0) 编辑

导航