0

背景が主に2色のpngがあります。as3が色を選択して透明にする方法を提供しているかどうか知りたいです。

4

2 に答える 2

0

BitmapData クラスを見てください。

各ピクセルの色を取得し、一部の透明度を設定できます。

于 2012-12-26T17:50:48.443 に答える
0

1 つのオプションは、BitmapData メソッドのしきい値を使用することです。

http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/flash/display/BitmapData.html#threshold%28%29

public function threshold(sourceBitmapData:BitmapData, sourceRect:Rectangle, destPoint:Point, operation:String, threshold:uint, color:uint = 0, mask:uint = 0xFFFFFFFF, copySource:Boolean = false):uint
于 2012-12-26T20:46:21.113 に答える