如何保存PHP图像处理的输出

时间:2013-05-03 00:23:22

标签: php

我不确定这个函数是否符合我的意图,但我需要的是在文件夹中创建图像的缩略图。

$filename = '../images/' . $new_name;

header('Content-Type: image/jpeg');

list($width, $height) = getimagesize($filename);

$new_width = $width / $height;

$new_height = 250 / $new_width;

$new_height = round($new_height);

$image_p = imagecreatetruecolor(250, $new_height);
$image_s = imagecreatefromjpeg($filename);
imagecopyresampled($image_p, $image_s, 0, 0, 0, 0, 250, $new_height, $width, $height);

imagejpeg($image_p, null, 100);

所以我需要将最终结果保存到我的文件夹中,但不能覆盖原始图像。我在http://php.net/上找到了这个功能,但我不知道如何保存图像。

1 个答案:

答案 0 :(得分:2)

imagejpeg($image_p, "path/to/dir/image.jpg", 100);

就是这样。