$im = new Imagick($path);
$im->resizeImage();
echo $im->calc_image_size(); ? //> 121312 Bytes
是否有 calc_image_size 或者我必须写入文件并检查尺寸?(失败)
$im = new Imagick($path);
$im->resizeImage();
echo $im->calc_image_size(); ? //> 121312 Bytes
是否有 calc_image_size 或者我必须写入文件并检查尺寸?(失败)
getImageSize 抛出已弃用。
Imagick::getImageSize is deprecated. Imagick::getImageLength should be used instead
http://php.net/manual/en/function.imagick-getimagelength.php
如果您压缩图像,您可以像这样确定大小
$data = $im->__toString();
$imageSize = strlen($data);