2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

ビットマップでアルファチャネルマスク

Posted at

ポイントは cacheAsBitmap でビットマップキャッシュを有効する必要があること。

ソースコード:

mask.as
package
{
	import flash.display.Loader;
	import flash.display.Shape;
	import flash.display.Sprite;
	import flash.net.URLRequest;
	
	public class mask extends Sprite
	{
		public function mask()
		{
			var square:Shape = new Shape();
			square.graphics.beginFill(0x666666);
			square.graphics.drawRect(0,0,100,100);
			square.graphics.endFill();
			square.cacheAsBitmap = true;
			this.addChild( square );
			
			var loader:Loader = new Loader();
			loader.load( new URLRequest("http://upload.wikimedia.org/wikipedia/commons/c/cf/AWBWH1.png") );
			loader.scaleX = 0.25;
			loader.scaleY = 0.25;
			loader.cacheAsBitmap = true;
			this.addChild( loader );
			
			square.mask = loader;
		}
	}
}

実行結果:
kobito.1375238758.975467.png

2
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?