我正在制作一个小脚本,它遍历目录中的所有图像,检查它们的宽度,如果它们不是这个宽度 - 调整大小。
我到目前为止是这样的:
$files = glob("*.{png,jpg,jpeg}", GLOB_BRACE);
foreach ($files as $file)
{
// get the image size
$imagesize = getimagesize($file);
$width_orig = $imagesize[0];
$height_orig = $imagesize[1];
$dst_w = 900;
if($width_orig != $dst_w)
{
$dst_h_multiplier = $dst_w / $width_orig;
$dst_h = $dst_h_multiplier * $height_orig;
$dst = imagecreatetruecolor($dst_w, $dst_h);
$image = imagecreatefromjpeg($file);
imagecopyresampled($dst, $image, 0, 0, 0, 0, $dst_w, $dst_h ,$width_orig, $height_orig);
imagejpeg($dst,null,100);
}
}
看起来脚本执行正常 - 但执行此脚本的同一目录中的图像文件未修改。
我在这里想念什么?我该如何调试呢?