Windows Script to convert heic iphone files to jpg
So iPhone provides it's own over-engineered challenges. One of that is
jpg files are compressed to heic to save about 30% space. But grabbing
the files to computer is a pain. And then again you end up with these
heic files. There's no inbuilt support for these in windows and no
real benefit where storage is cheap.
So I decided to save myself the pain and just convert them to jpg
using image-magic.
Of course, I did not have to code anything, found one ready-made
script on the internet.
----------------------------------------------------
@echo off
for %%a in (*.HEIC) do (
magick "%%a" "%%~na.jpg"
)
echo Conversion complete.
pause
-----------------------------------------------------
jpg files are compressed to heic to save about 30% space. But grabbing
the files to computer is a pain. And then again you end up with these
heic files. There's no inbuilt support for these in windows and no
real benefit where storage is cheap.
So I decided to save myself the pain and just convert them to jpg
using image-magic.
Of course, I did not have to code anything, found one ready-made
script on the internet.
----------------------------------------------------
@echo off
for %%a in (*.HEIC) do (
magick "%%a" "%%~na.jpg"
)
echo Conversion complete.
pause
-----------------------------------------------------
Comments
Post a Comment