How to upload BitmapData to a server (ActionScript 3)?

怎甘沉沦 提交于 2019-12-04 19:24:07

This is the AS3 code I've used for this before - this makes a POST request with binary data in the request body:

var url_request:URLRequest = new URLRequest();
url_request.url = "http://server.com/upload.php";
url_request.contentType = "binary/octet-stream";
url_request.method = URLRequestMethod.POST;
url_request.data = myByteArray;
url_request.requestHeaders.push(
 new URLRequestHeader('Cache-Control', 'no-cache'));

var loader:URLLoader = new URLLoader();
loader.dataFormat = URLLoaderDataFormat.BINARY;
// attach complete/error listeners
loader.load(url_request);

I notice that you're not setting .dataFormat to BINARY or .method to POST.

Note that it could be a security issue you're running into. I've seen cases where code like this must execute in response to a user action (like a button click).

You should also check your server logs to see whether the request is making it to the server. Note that without a fully-qualified url (starts with http://), it assumes the server serves your PHP file from the same location as your SWF file.

Your encoding of the image will break it because jpg data contains non-ascii characters.
Changing your contentType type to "image/jpeg" should fix it however this statement is untested.

When I send JPG to the server I always base64 encode it first and then decode it on the server side.

import mx.utils.Base64Encoder;

var b64:Base64Encoder = new Base64Encoder()
b64.encodeBytes( myBytes )
var encodedb64.toString();

request.data = b64.toString();
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!