Is there a way to convert all TIFF images to PNG using windows console or any simple tool. I renamed tags, but the problem now is file size. What are ways to compress files?
Asked
Active
Viewed 7,111 times
2 Answers
6
imagemagick, it's CLI tool for image manipulation available for most major operating systems including Windows http://www.imagemagick.org/script/download.php
It's very simple to use it
convert in.tiff out.png
To convert and scale by 50%:
convert in.tiff -resize 50% out.png
Here you can find full list of general commands
-
1Convert all images in a folder with: gm mogrify -format png *.tiff – molholm Sep 01 '17 at 22:22