Re: [flexcoders] saving a manipulated jpg

2007-01-25 Thread franto
my question is, how can you upload to server, i cant do that :( On 1/25/07, Webdevotion [EMAIL PROTECTED] wrote: Another problem that I have is that my cfc method will not accept my ByteArray. Actionscript: = var picture:Picture = Slideshow.getInstance().getPicture(); var

Re: [flexcoders] saving a manipulated jpg

2007-01-25 Thread Webdevotion
I have resolved the bytearray problem. Only question: how to apply blendmodes etc to the generated bitmap ?

Re: [flexcoders] saving a manipulated jpg

2007-01-25 Thread Webdevotion
Here you go franto, http://blog.webqem.com.au/index.php/2006/09/08/flex-20-image-saving/ my problem still stands, anyone ?

[flexcoders] saving a manipulated jpg

2007-01-24 Thread Webdevotion
Hello, I want to save a manipulated jpg file to the server. I can encode it to JPG etc, but the result is the original JPG. I want to preserve the effects that I have applied to the sprite containing the loaded JPG. // eg: this does copy the jpg, but not the blendmode

Re: [flexcoders] saving a manipulated jpg

2007-01-24 Thread Webdevotion
Another problem that I have is that my cfc method will not accept my ByteArray. Actionscript: = var picture:Picture = Slideshow.getInstance().getPicture(); var bmp:BitmapData = new BitmapData(picture.width,picture.height,false); bmp.draw(picture); var myPNG:ByteArray =