tif issue
Posted: 2012-11-01T14:46:27-07:00
Its my first day using ImageMagick with ubuntu. Im trying to create a bash script that will allow me to return filenames based on size but when I write I get a TIFFWarnings/824 error. I would also like to know how to add .jpegs and .jpg checks. I can run it correctly by .jpgs and get results, but Im lost. Ive tried about every search variation for such as:
Code: Select all
(identify -format "%w %h %f\n" *tif)
Code: Select all
(identify -format "%w %h %f\n" ".jpeg" || ".jpg")
Code: Select all
(identify -format "%w %h %f\n" "*.jpeg" || "*.jpg")
Code: Select all
(identify -format "%w %h %f\n" ".jpeg" && ".jpg")
Code: Select all
(identify -format "%w %h %f\n" ".jpeg" & ".jpg")
Code: Select all
(identify -format "%w %h %f\n" *jpeg & *jpg)
Code: Select all
(identify -format "%w %h %f\n" *jpeg || *jpg)