Search code examples
actionscript-3imagehaxe

Duplicate image with Haxe


My goal is to make a wide map using only one square image. Using actionscript 3 the solution is to simply make new Bitmap from the Loader:

var loader:Loader = new Loader();
loader.load(new URLRequest("xyz.png")); 
this.addChild(loader);  

var duplicationBitmap:Bitmap = new Bitmap(Bitmap(loader.content).bitmapData);

Unluckily, Haxe API doesn't allow to do that. I can't get bitmapData from loader content…

Anyone has a clue? Thanks.


Solution

  • The API is the very same, so I guess the problem is how you are trying to cast; try using:

    var duplicationBitmap= new Bitmap(cast(loader.content, Bitmap).bitmapData);