I am trying to batch edit my files and save them as their original names using the code:
Code: Select all
magick convert *.tif -colorspace gray -threshold 50% -compress Group4 -set filename:f %t "%[filename:f].tif"Code: Select all
magick convert *.tif -colorspace gray -threshold 50% -compress Group4 -set filename:f %t "%[filename:f].tif"For your use the best answer is probably snibgo's suggestion to use "mogrify". But if you need to use "magick", you can make sure the output images are separate and not combined into a multi-image TIF by using the plus "+" version of +adjoin.digcollib wrote: 2018-10-08T07:53:57-07:00I am trying to batch edit my files and save them as their original names using the code:
But, they are all saved under the first tif name as almost a pdf, with all of the image combined into the one. Any tips on how to remedy this?Code: Select all
magick convert *.tif -colorspace gray -threshold 50% -compress Group4 -set filename:f %t "%[filename:f].tif"
Users browsing this forum: Bing [Bot], Google [Bot] and 7 guests