nemozem to teraz otestovat ale malo by to ist
Kód:
<?php
$file = 'test.jpg'; // zdrojovy subor
$newwidth = '300'; // nova sirka
$newheight = '200'; // nova vyska
header('Content-type: image/jpeg');
list($width, $height) = getimagesize($file);
$input = imagecreatefromjpeg($file);
imagecopyresized($output, $input, 0, 0, 0, 0, $newwidth, $newheight, $width, $height);
imagejpeg($output);
?>