Ask a Question related to Macromedia Flex General Discussion, Design and Development.
-
greenhippo #1
Extract Image from ByteArray
Hi,
If i have a byteArray of an image, how do i make a displayable Image
I can load it using a Loader.loadBytes but then i cant display that anywhere, how do i display a Loader object in flex?
greenhippo Guest
-
Java ByteArray TIFF Image
We have a image server that we built for Flash 5/Generator to load tiff images into flash and updated it to work with MX when loading JPGs was... -
extract iso image
hi, I am not sure if I am doing the right thing. I want to extract an downloaded isoimage by first mounting it. I tried: mount -t iso9660 -o loop... -
Extract Image to Tiff
This question is concerning the Adobe Acrobat software for windows. I am trying to extract a pdf to a tiff. The pdf is only one page, however, when... -
Extract the first page of a PDF as an image?
I'm trying to find some software (free, shareware, or commercial) that extract the first page of a PDF (whether it's an image or not) and render it... -
Extract Image
Is there an application that will extract an embedded image for OS X. There used to be one in OS 9. -
greenhippo #2
Re: Extract Image from ByteArray
Worked it out, for all those who come across this and are interseted
var loader:Loader = new Loader();
loader.addEventListener(Event.COMPLETE, completeHandler);
loader.loadBytes(byteArray);
public function completeHandler(e:Event){
bmp:Bitmap = Bitmap(loader.content);
someUIComponent.addChild(bmp);
}
greenhippo Guest



Reply With Quote

