Aipo
Aipo

Reputation: 1985

Convert from TIFF to PNG using Windows?

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

Answers (2)

ruX
ruX

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

MrMadBacon
MrMadBacon

Reputation: 51

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

Upvotes: 0

Related Questions