在PHP中调整图像大小后如何获得正确的文件大小?

时间:2013-12-13 10:15:20

标签: php image resize filesize

我有这段代码:

// Build the path where I want to save the file;
$filePath="uploads/image.jpeg";
/*
 * Open an input stream relative to $_FILES['file']['tmp_name'] 
 * and write it in an output stream relative to $filePath;
 */
writeFile($filePath);

echo "Before resizing: ".filesize($filePath)." bytes";

/*
 * Create a resized version of the image using imagecopyresampled();
 */
$imageResized = resizeImage($filePath);
/*
 * Actually write the image to the same location of the original;
 */
imagejpeg($imageResized, $filePath);

echo "After resizing: ".filesize($filePath)." bytes";

现在的事实是,ehoes给了我相同的文件大小,而实际上在文件资源管理器中,调整大小后的文件大小要低得多! 调整大小后如何获得正确的文件大小?

1 个答案:

答案 0 :(得分:1)

请参阅filesize上的手册:

注意:此函数的结果已缓存。有关更多详细信息,请参阅clearstatcache()。

所以在第二次文件大小调用之前使用clearstatcache()