Imagemagick:转换为固定宽度、比例高度

发布于 2024-12-01 07:10:20 字数 76 浏览 0 评论 0原文

使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

许仙没带伞 2024-12-08 07:10:20

使用 -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.

っ〆星空下的拥抱 2024-12-08 07:10:20

Imagemagick 几何:'宽度'x'高度'
如果将一部分留空,则意味着按比例调整大小。

示例:

100x200       # width = 100, height = 200
300x          # width = 300, height = proportional
x300          # width = proportional, height = 300

Imagemagick geometry: 'width'x'height'
If you leave one part empty, this means resize proportional.

Examples:

100x200       # width = 100, height = 200
300x          # width = 300, height = proportional
x300          # width = proportional, height = 300
信仰 2024-12-08 07:10:20

对于像我这样的努比...
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'

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文