Imagick 知道图像尺寸吗? (文件大小)
$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
Is there a calc_image_size or I have to write in a file and check the dimension? (fail)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
getImageSize 抛出 Deprecated。
http://php.net/manual/en/function.imagick-getimagelength.php
getImageSize throws a Deprecated.
http://php.net/manual/en/function.imagick-getimagelength.php
如果压缩图像,您可以像这样确定大小
If you compress the image you can determine the size like this
请参阅此 Imagick::getImageSize
See this Imagick::getImageSize