Lo que quiero es saber si se puede enviar directamente el bitmap sin tener que crear un array de pixels y reconstruirlo en el php. (Uso ActionScrip 2)
Flash:
Código:
Php:import flash.display.BitmapData; shaF.onPress = function() { output(); }; function output() { snap = new BitmapData(mc._width, mc._height); snap.draw(mc); var output:LoadVars = new LoadVars(); output.image = snap; output.send("show2.php", "output", "POST"); } stop();
Código PHP:
<?php
if ($_POST['image']) {
header('Content-Type: image/jpeg');
header("Content-Disposition: attachment; filename=image.jpg");
echo $_POST["image"];
}
?>