3

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?

Aipo
  • 1,805
  • 3
  • 23
  • 48

2 Answers2

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

jayant
  • 2,349
  • 1
  • 19
  • 27
ruX
  • 7,224
  • 3
  • 39
  • 33
0

TinyPng is great to compress png files, you can try that. www.tinypng.com

MrMadBacon
  • 51
  • 7