Skip to content

Instantly share code, notes, and snippets.

View selichko's full-sized avatar

simon selichko

  • philadelphia
View GitHub Profile
@selichko
selichko / gist:6af5b835eda9735be7ee7367e93da4f6
Created September 29, 2019 18:16
convert HEIC to PNG files
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
@selichko
selichko / tiff-to-text_sourcecaster.txt
Created June 6, 2018 23:43
Sourcecaster recipe: tiff --> text (OCR)
cd /Users/sarahe/Documents/drawing-tiff
for i in *.tiff; do tesseract $i drawing-tiff_$i; done;