问题
I need to make a simple flash program (exported as a swf to be displayed in a webbrowser) that allows a user to manipulate an existing image but then SAVE this manipulated image to a webserver.
Can the client side flash program generate the new image OR does it need to send back all the changes to the web server, which will then generate the new image (based on those changes, via a POST) on the server side?
cheers :)
回答1:
You can do this just fine, Flash has all the bitmap manipulation functions needed for a simple image editing applications. Sending the image back is a matter of a simple post to the server. You might need to compress it first, since sending the raw data will get too big pretty fast.
回答2:
Look at flash remoting. It's probably easier to just end the entire image back.
I've used http://www.fluorinefx.com/ in the past.
来源:https://stackoverflow.com/questions/636806/can-a-client-flash-swf-file-do-the-following