Using the Haxe programming language, is there any cross-platform way to read a PNG image, and get the pixel data from the image?
I have a file called stuff.png, and I want to obtain an array of RGB values from the image (as an integer array).
|
Using the Haxe programming language, is there any cross-platform way to read a PNG image, and get the pixel data from the image? I have a file called stuff.png, and I want to obtain an array of RGB values from the image (as an integer array). |
||||
|
|||
|
|
You can always access the pixel data with BitmapData.getPixels/BitmapData.setPixels. If you are using haXe NME, you can use Assets.getBitmapData() to load an asset image file. If you want to load images from network, then you can use Loader class, it can asynchronous loading remote images, but in flash please mind the cross-domain issue. For more generic ByteArray -> BitmapData conversion, use following code:
|
|||||||
|
BitmapData. – Banthar Dec 26 '12 at 23:00