Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Bulk convert
#2
For just a conversion, using Gimp is overkill. The CLI tool of choice for image conversions is ImageMagick. Can be as simple as:
Code:
magick convert image.heic image.jpg
There are of course plenty of options to fine-tune the conversion if necessary.

You can even do a while directory of images like this:
Code:
convert *.heic -set filename:base "%[basename]" "%[filename:base].jpg"

(some more ways here).
Reply


Messages In This Thread
Bulk convert - by Joseph_N - 12-06-2021, 06:43 PM
RE: Bulk convert - by Ofnuts - 12-06-2021, 11:58 PM
RE: Bulk convert - by rich2005 - 12-07-2021, 11:00 AM
RE: Bulk convert - by Joseph_N - 12-07-2021, 06:34 PM
RE: Bulk convert - by Ofnuts - 12-08-2021, 11:36 AM
RE: Bulk convert - by rich2005 - 12-07-2021, 07:12 PM
RE: Bulk convert - by rich2005 - 12-08-2021, 12:12 PM
RE: Bulk convert - by Ofnuts - 12-08-2021, 06:27 PM

Forum Jump: