我正在改進我的Facebook應用程序。我需要能夠調整圖像大小,然後將其保存到服務器上的目錄中。這是我必須調整的代碼:保存圖像使用PHP調整大小
<?php
// The file
$filename = 'test.jpg';
$percent = 0.5;
// Content type
header('Content-type: image/jpeg');
// Get new dimensions
list($width, $height) = getimagesize($filename);
$new_width = $width * $percent;
$new_height = $height * $percent;
// Resample
$image_p = imagecreatetruecolor($new_width, $new_height);
$image = imagecreatefromjpeg($filename);
imagecopyresampled($image_p, $image, 0, 0, 0, 0, $new_width, $new_height, $width, $height);
// Output
imagejpeg($image_p, null, 100);
?>
我的問題是,我將如何保存這個調整大小的圖像?我需要嗎?有沒有辦法操縱調整大小的圖像,而不保存它?
我沒有得到這最後的一句話? – 2010-10-16 19:38:09