Areric wrote:
> How do i get the binary data out of $scaledImage
A workaround would be this:
<?php
ob_start(); // start a new output buffer
imagejpeg( $newimage, NULL, 100 );
$ImageData = ob_get_contents();
ob_end_clean; // stop this output buffer
?>