GraphicsMagick 是否有与 ImageMagick 等效的“convert -auto-orient”?选项?

发布于 2024-10-04 06:55:07 字数 444 浏览 8 评论 0原文

我想转向 GraphicsMagick,因为我只调整照片大小和旋转照片,而且我听说它更快一点。但它并不直接采用 -auto-orient 选项。还有其他方法可以有效地做到这一点吗? Imagemagick Convert -auto-orient 选项将读取 EXIF 方向标签,相应地旋转,然后将 EXIF 标签重置为orientation=1。

请参阅: http://www.imagemagick.org /script/command-line-options.php?ImageMagick=80iu7ek6jb638dl2kin7n3v4d5#auto-orient

I want to move to GraphicsMagick because I'm only resizing and rotating photos, and I heard it was a little faster. But it doesn't take the -auto-orient option directly. Is there another way to do this efficiently? The Imagemagick convert -auto-orient option will read the EXIF orientation tag, rotate accordingly, then RESET the EXIF tag to orientation=1.

see: http://www.imagemagick.org/script/command-line-options.php?ImageMagick=80iu7ek6jb638dl2kin7n3v4d5#auto-orient

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

亚希 2024-10-11 06:55:07

GraphicsMagick 版本 1.3.18(2013 年 3 月 10 日发布)添加了对 -auto-orient< 的支持“转换”工具上的 /code> 参数

引自 GraphicsMagick 新闻页面:“convert/mogrify:现在支持 -auto-orient 自动垂直旋转图像”

Version 1.3.18 of GraphicsMagick (released March 10, 2013) added support for the -auto-orient parameter on the 'convert' tool.

Quote from GraphicsMagick News page: "convert/mogrify: Now support -auto-orient to automatically rotate the image upright"

动听の歌 2024-10-11 06:55:07

现在还不行。

正如您所说,您可以通过一个简单的开关盒猜测要完成的操作。这是取自一个有趣的资源页面:http://sylvana.net/jpegcrop/exif_orientation.html

switch EXIF:Orientation:
  1) transform="";;
  2) transform="-flip horizontal";;
  3) transform="-rotate 180";;
  4) transform="-flip vertical";;
  5) transform="-transpose";;
  6) transform="-rotate 90";;
  7) transform="-transverse";;
  8) transform="-rotate 270";;
  *) transform="";;

Not at this time.

As you said, you can guess the operation to accomplish with a simple switch case. This is taken from an interesting resource page: http://sylvana.net/jpegcrop/exif_orientation.html

switch EXIF:Orientation:
  1) transform="";;
  2) transform="-flip horizontal";;
  3) transform="-rotate 180";;
  4) transform="-flip vertical";;
  5) transform="-transpose";;
  6) transform="-rotate 90";;
  7) transform="-transverse";;
  8) transform="-rotate 270";;
  *) transform="";;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文