Sono riuscito a fare il resize come voglio, ma mi mostra immagini tutte nere... qualcuno ha mai avuto questo problema?
Il codice è questo:
Codice PHP:
<?php
// File and new size
$filename = $patch;
$percent = 0.5;
// Content type
header('Content-type: image/jpeg');
// Get new sizes
list($width, $height) = getimagesize($filename);
if ($width > $height){
$height = $height * 50;
$newheight = $height / $width;
$newwidth = 50;
}
else {
$width = $width * 50;
$newwidth = $width / $height;
$newheight = 50;
}
// Load
$thumb = imagecreatetruecolor($newwidth, $newheight);
$source = imagecreatefromjpeg($filename);
// Resize
imagecopyresized($thumb, $source, 0, 0, 0, 0, $newwidth, $newheight, $width, $height);
// Output
imagejpeg($thumb);
?>