调整目录中图像的大小
我有一个充满图像的目录,我想将其大小调整到原始大小的 60% 左右。
我该怎么做呢? 可以是 Python 或 Perl
Cheers
Eef
I have a directory full of images that I would like to resize to around 60% of their original size.
How would I go about doing this? Can be in either Python or Perl
Cheers
Eef
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
如果您想以编程方式执行此操作(我认为是这种情况),请使用 PIL 调整大小,
然后将其保存到同一文件或新位置。
递归地遍历文件夹并对所有图像应用调整大小功能。
我想出了一个示例脚本,我认为它适合您。 您可以改进它:也许使其图形化,添加更多选项,例如相同的扩展名或可能全部为 png,调整采样线性/双线性的大小等
If you want to do it programatically, which I assume is the case, use PIL to resize e.g.
then save it to same file or a new location.
Go through the folder recursively and apply resize function to all images.
I have come up with a sample script which I think will work for you. You can improve on it: Maybe make it graphical, add more options e.g. same extension or may be all png, resize sampling linear/bilinear etc
使用 ImageMagick 的一部分 mogrify 怎么样? 如果你确实需要从 Perl 控制它,那么你可以使用 Image::Magick, Image::Resize 或 成像器。
How about using mogrify, part of ImageMagick? If you really need to control this from Perl, then you could use Image::Magick, Image::Resize or Imager.
可以在壳里吗?
如果您有> 1个核心,你可以这样做:
-P3意味着你想同时调整最多3个图像的大小(并行化)。
如果你不需要保留原件,你可以使用mogrify,但我更喜欢使用convert,然后rm ...; mv ... - 只是为了安全起见,如果调整大小(无论出于何种原因)失败。
Can it be in shell?
If you have > 1 core, you can do it like this:
-P3 means that you want to resize up to 3 images at the same time (parallelization).
If you don't need to keep originals you can use mogrify, but I prefer to use convert, and then rm ...; mv ... - just to be on safe side if resizing would (for whatever reason) fail.
使用 PerlMagick,它是流行的 ImageMagick 命令行工具套件,用于执行此类操作。 PythonMagic 也可用。
Use PerlMagick, it's an interface to the popular ImageMagick suite of command line tools to do just this kind of stuff. PythonMagic is available as well.
我将 Python 与 PIL(Python 图像库)一起使用。 当然有专门的程序可以做到这一点。
很多人使用 PIL 来做这样的事情。 看看:使用 python 快速调整图像大小
PIL很强大,最近我发现了这个菜谱:
批量给图片添加水印
I use Python with PIL (Python Image Library). Of course there are specialized programs to do this.
Many people use PIL to such things. Look at: Quick image resizing with python
PIL is very powerful and recently I have found this recipe:
Putting watermark to images in batch
您需要调整它的大小还是想以编程方式调整大小?
如果只是调整大小,请使用 PixResizer。 http://blue Five.pair.com/pixresizer.htm
do you need to just resize it or you want to resize programmatically?
If just resize use PixResizer. http://bluefive.pair.com/pixresizer.htm