Imagemagick:转换为固定宽度、比例高度
使用 imagemagick 转换命令,如何将图像大小调整为固定宽度和比例高度,例如使用 -resize 或 -thumbnail 选项?
Using the imagemagick convert command, how can I resize an image to a fixed width and proportional height e.g. using the -resize or the -thumbnail option?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
使用
-resize 100x
将图像宽度调整为 100 像素,同时保持高度的纵横比。有关详细信息,请阅读精美的 ImageMagick 手册。
Use
-resize 100x
to resize images to 100 pixels in width while maintaining the height's aspect ratio.Read the fine ImageMagick manual for details.
Imagemagick 几何:'宽度'x'高度'
如果将一部分留空,则意味着按比例调整大小。
示例:
Imagemagick geometry: 'width'x'height'
If you leave one part empty, this means resize proportional.
Examples:
对于像我这样的努比...
Windows:Powershell:以 Facebook 照片为例:
右键单击窗口“开始”,选择“终端”
C: cd 到您需要进行转换的目录:
即:cd Users/OneDrive/Pictures
C: mkdir FBName ;创建子目录“makedir ./FBName” 执行相同操作。
C:magick name.jpg -resize 2048 ./FBName/newname.jpg
;将最大尺寸为 2048(长边、纵向或横向)的“name.jpg”调整到您之前创建的子目录 FBName 中。 Linux 将用“convert”替换“magick”
For nubie's like me...
Windows: Powershell: for Facebook Photos for example:
Right click windows 'Start', select 'Terminal'
C: cd to directory that you require to do conversion from:
ie: cd Users/OneDrive/Pictures
C: mkdir FBName ;creates sub-directory 'makedir ./FBName' does the same.
C: magick name.jpg -resize 2048 ./FBName/newname.jpg
; Will resize 'name.jpg' with a max size of 2048 (long edge, portrait or landscape) into the subdirectory FBName that you created previously. Linux would replace 'magick' with 'convert'