0

是否可以删除imagejpeg创建的图像我将图像上传到我的 Amazon S3 服务器,但文件在运行后仅弹出在我服务器的主目录中。

    $new_height = 120;
    $width = imagesx($originalImage);
    $height = imagesy($originalImage);
    $new_width = round(($width * $new_height) / $height);
    $imageResized = imagecreatetruecolor($new_width, $new_height);
    imagecopyresampled($imageResized, $originalImage, 0, 0, 0, 0, $new_width, $new_height, $width, $height);

    $tmp_loc = 'uploads/thumb/';
    $tempfilename = tempnam($tmp_loc, $filename);
    imagejpeg($imageResized, $filename,100);
    imagedestroy($imageResized);
    imagedestroy($originalImage);
    unlink($tempfilename);

我试过了imagedestroyunlink($tempfilename);但文件仍然存在。

4

2 回答 2

0

imagejpeg(...) 应该输出到 $tempfilename 而不是 $filename,那么您将取消链接正确的文件。

于 2013-03-26T06:40:12.287 回答
0

您忘记打开变量$tmp_loc

看:

$tmp_loc = uploads/thumb/';

正确的:

$tmp_loc = 'uploads/thumb/';
于 2013-03-26T03:54:32.427 回答