26/05/2011, 14:30
|
| | | Fecha de Ingreso: enero-2005 Ubicación: aquí
Mensajes: 380
Antigüedad: 19 años, 9 meses Puntos: 0 | |
Respuesta: movieclip a pdf y grabar en servidor El código que estoy usando:
Código:
mcBitmap = new BitmapData(mainContent._width, mainContent._height, true, 0xFFFFFF);
mcBitmap.draw(mainContent);
depth = 10;
this.createEmptyMovieClip("pullQuote",depth++);
pullQuote.createTextField("title",10,0,0,100,100);
pullQuote.title.text = "Hello world!";
pullQuote.draw(mainContent);
pullQuote.attachBitmap(mainContent, 100, "auto", true);
var cadena = new String();
for (var i = 1; i<=mainContent._height; i++) {
for (var j = 1; j<=mainContent._width; j++) {
cadena += ","+mcBitmap.getPixel(j, i).toString(16);
}
}
//Variables that PHP will receive
enviarImagen = new LoadVars();
respuesta = new LoadVars();
//Receive php results
respuesta.onLoad = function(exito) {
//If it's ok
if (exito) {
trace("Image "+letterID+" OK");
getURL("checkImage.php?image="+unescape(this.letterFile), "_self");
} else {
trace("Error "+letterID+" OK");
getURL("checkImage.php?error", "_blank");
}
Pero sigo sin poder agregar el texto en la imagen creada por PHP,
Que estoy haciendo mal? |