Search code examples
flashactionscript-3bitmapdataurlloader

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


I have bitmapData. I want to upload it to a server using URLLoader. I tried many ways, but with no result. This is my current code in ActionScript 3:

import flash.net.URLLoader;
import flash.net.URLRequest;
import mx.graphics.codec.JPEGEncoder;
...
var jpg:JPEGEncoder = new JPEGEncoder();
var myBytes:ByteArray = jpg.encode(bitmapData);
var uploader:URLLoader = new URLLoader();
var request:URLRequest = new URLRequest("uploadFile.php");
request.contentType = "application/octet-stream";
request.data = myBytes;
uploader.load(request);

I take an object bitmapData and encode it to jpg. After that I try to send jpg-bytes to the file "uploadFile.php" on the server. But there are neither errors nor positive result. I will be grateful for any suggestions/advices.


Solution

  • 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.