Hallo zusammen,
ich habe ein kleines Script gefunden, welches mir ermöglicht aus Flash heraus Movieclips als Bilder auszugeben. Allerdings wird das Bild natürlich nicht als xy.jpg ausgegeben sondern als script.php.
Gibt es eine Möglichkeit, dass das Bild ganz normal als JPG ausgegeben wird (xy.jpg)?
Hier das Script:
ich habe ein kleines Script gefunden, welches mir ermöglicht aus Flash heraus Movieclips als Bilder auszugeben. Allerdings wird das Bild natürlich nicht als xy.jpg ausgegeben sondern als script.php.
Gibt es eine Möglichkeit, dass das Bild ganz normal als JPG ausgegeben wird (xy.jpg)?
Hier das Script:
PHP:
<?php
$data = explode(",", $_POST['img']);
$width = $_POST['width'];
$height = $_POST['height'];
$image=imagecreatetruecolor( $width ,$height );
$background = imagecolorallocate( $image ,0 , 0 , 0 );
//Copy pixels
$i = 0;
for($x=0; $x<=$width; $x++){
for($y=0; $y<=$height; $y++){
$int = hexdec($data[$i++]);
$color = ImageColorAllocate ($image, 0xFF & ($int >> 0x10), 0xFF & ($int >> 0x8), 0xFF & $int);
imagesetpixel ( $image , $x , $y , $color );
}
}
//Output image and clean
header( "Content-type: image/jpeg" );
imagejpeg( $image, '', 80 );
imagedestroy( $image );
?>