Reputation: 1985
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?
Upvotes: 3
Views: 8181
Reputation: 7472
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
Upvotes: 6
Reputation: 51
TinyPng is great to compress png files, you can try that. www.tinypng.com
Upvotes: 0