Upload new photo to picasa by http request actionscript 3 -


i want add new photo picasa server using picasa api in as3. can tell me form of http request , how create binary image data put in request.

api directory v2.0: https://developers.google.com/picasa-web/docs/2.0/developers_guide_protocol

thanks help.

you can binary data image this.

    var bd:bitmapdata = new bitmapdata(myimage.width, myimage.height, true,0xffffffff);     bd.draw(myimage); 

now have bitmap data of 'myimage' in var 'bd'.


Comments

Popular posts from this blog

apache - Add omitted ? to URLs -

redirect - bbPress Forum - rewrite to wwww.mysite prohibits login -

php - How can I stop spam on my custom forum/blog? -