On 3/30/06, sn197412 <[EMAIL PROTECTED]> wrote: > How should I write code for uploading the Bitmap to ColdFusion Server > for example ?? > Is this possible??
Try this: var bitmapData:BitmapData = bitmap.bitmapData; var pixels:ByteArray = bitmapData.getPixels(bitmapData.rect); Now you can upload the byte array to the CF server as a BLOB using whatever means. (Ely thinks it should be uploaded as a * blog*, but we're still debating that internally (ask Roger)) Manish -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com Yahoo! Groups Links <*> To visit your group on the web, go to: http://groups.yahoo.com/group/flexcoders/ <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/

