gpt4 book ai didi

actionscript-3 - 为什么 BitmapData 不透明?

转载 作者:行者123 更新时间:2023-12-04 06:41:07 24 4
gpt4 key购买 nike

    var subimage = new Bitmap();
subimage.bitmapData = new BitmapData(25, 25, true, 0);
addChild(subimage);

从我读过的所有内容来看,这应该是透明的。我看到一个大的黑色方块。是什么原因造成的?

最佳答案

用这个

new BitmapData(25, 25, true, 0x00000000);

代替
new BitmapData(25, 25, true, 0);

0xFF000000 是黑色 (0x000000),alpha 等于 1

0x00000000 是黑色 (0x000000),alpha 等于 0

这是一个很好的解释颜色和 alpha 是如何工作的: http://myflex.wordpress.com/2007/09/07/about-hex-color-codes-in-flex-as3/

//编辑:

Dennis Krøger 和 strille 是对的,0x00000000 == 0。
看起来问题出在其他地方,而不是您粘贴的代码中。

关于actionscript-3 - 为什么 BitmapData 不透明?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12121466/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com