Ben * 110 90 değiştirmek istiyorsanız, şimdi 925 * 1139 bulunuyor.
deneyin imagecopyresampled
PHP function or the imagecopyresized
function from the GD library.
Ben bu konuda blogged. Check here.
Ne yapacağınızı biliyor kez temelde GD kullanarak oldukça kolaydır.
$uploadedfile = $_FILES['file']['tmp_name'];
$src = imagecreatefromjpeg($uploadedfile);
list($width, $height) = getimagesize($uploadedfile);
$tmp = imagecreatetruecolor(800, 600);
$filename = '/path/to/images/' . $_FILES['file']['name'];
imagecopyresampled($tmp, $src, 0, 0, 0, 0, 800, 600, $width, $height);
imagejpeg($tmp, $filename, 100);
Yine Ayrıntılar için blog kontrol.