[问题] setPixel颜色出不来

楼主: iphone5566s (哀凤最终款)   2015-12-18 17:14:42
各位先进们晚安
我有一张图叫做picture
我要复制出来变成picture2
Bitmap picture;
Bitmap picture2;
...
for(int x=0;x<picture.getWidth();x++) {
for (int y = 0; y < picture.getHeight(); y++) {
picture2.setPixel(x,y,Color.argb(Color.alpha(0),
Color.red(picture.getPixel(x, y)),
Color.red(picture.getPixel(x, y)),
Color.red(picture.getPixel(x, y))));}}
...
出来的结果应该有颜色的地方却都变成黑色(形状还在)
请问有人可以提醒我漏掉什么地方吗?
谢谢了!
作者: yichen (苍穹之下任我行)   2015-12-18 18:07:00
Color.alpha(0) 是什么意思啊?
作者: ssccg (23)   2015-12-18 22:44:00
alpha 0 = 透明的吧,没有要改透明度用 Color.rgb就好
楼主: iphone5566s (哀凤最终款)   2015-12-21 09:59:00
解决了,谢谢楼上大大

Links booklink

Contact Us: admin [ a t ] ucptt.com