Jump to content

Command Crate ¿about?

Convert HEIC files to JPEG format (ImageMagick)

for file in *.heic; do magic "$file" "${file%.heic}.jpeg"; done

Converts all .heic files in the current directory to .jpeg format using ImageMagick (magic). In ImageMagick v7 and later, the convert command is deprecated, so you should use magick instead.

utilities [kb:251]