I am working on a flex project, where I have to load a couple of SVG files and compare their pixels. To compare the pixels, I like to convert them into a byte array (BitMapData). I am able to create a bitmap data for a PNG image, but not for a SVG image. Can anyone help me overcome this one?

Thanks!

link|improve this question

35% accept rate
feedback

1 Answer

You can get BitmapData for the SVG because it's coming in as vector data. In vector there are no pixels just geometrical primitives which describe how to render the graphics. However you can take a snapshot of any component in Flex which you could then compare.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.