Add basic heic conversoin
This commit is contained in:
parent
47aeb6fd3b
commit
512f0629f5
1 changed files with 4 additions and 0 deletions
4
src/photos/convert_heic.sh
Executable file
4
src/photos/convert_heic.sh
Executable file
|
@ -0,0 +1,4 @@
|
|||
for f in $(find . -name '*.HEIC');
|
||||
do echo "Converting $f";
|
||||
/home/jgrogan/code/ImageMagick-7.1.1-35/utilities/magick mogrify -format png -quality 100% "$f";
|
||||
done;
|
Loading…
Reference in a new issue