ImageMagick/Perl 按像素宽度/高度对图像进行排序
您好,我无法找到有关如何使用 Image Magick 按像素宽度或高度列出图像的任何信息。我想要做的是过滤掉小于指定像素宽度或高度大小的图像。这是通过 perl 脚本完成的,感谢任何帮助。
Hi I am having trouble finding any info on how to list images by pixel width or height with Image Magick. what I want to do is filter out images that are less than a specified size of pixel width or height. This is done through a perl script and any help is appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
基于我用于其他东西的一些代码:
Based on some code I use for other stuff:
使用 ImageMagick 中的
identify
实用程序来获取宽度和高度。Use
identify
utility from ImageMagick to obtain width and height.安装 PerlMagick perl 模块
http://www.imagemagick.org/script/perl-magick.php
使用类似于示例脚本的代码
该网页中的示例来读取每个图像。
使用以下命令查询每张图像的行数和列数
$image->Get('rows')
和
$image->Get('columns')
并跳过太小的图像。Install the PerlMagick perl module from
http://www.imagemagick.org/script/perl-magick.php
Use code similar to the Example Script
examples from that web page to read each image.
Query the number of rows and columns in each image using
$image->Get('rows')
and
$image->Get('columns')
and skip images that are too small.