Code: Select all
<?php
$cmd = "convert image.jpg -gravity Center -crop 100x100+0+0 JPG:-";
header("Content-type: image/jpeg");
passthru($cmd, $retval);
?>
Code: Select all
<?php
$cmd = "convert image.jpg -gravity Center -crop 100x100+0+0 JPG:-";
header("Content-type: image/jpeg");
passthru($cmd, $retval);
?>