This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| task: convert HEIC files to PNG | |
| files in folder: /Users/yarrow/Documents/bcprint | |
| Step 1: Change to directory where files are | |
| cd /Users/yarrow/Documents/bcprint | |
| Step 2: Use ImageMagick's mogrify function to select all .heic files in folder and convert to png | |
| magick mogrify -monitor -format png *.HEIC |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| cd /Users/sarahe/Documents/drawing-tiff | |
| for i in *.tiff; do tesseract $i drawing-tiff_$i; done; |