13

i need to convert png files to tiff. Is there an easy way to do so in Ubuntu 14.04? Thanks!

giulio
  • 131
  • 1
  • 1
  • 3

2 Answers2

20

Install imagemagick:

sudo apt-get install imagemagick

An a simple command:

convert <your_png> out.tiff

Or for all files in your folder:

for f in *.png; do convert "$f" "${f%%.*}.tiff"; done
A.B.
  • 90,397
4

Try convert:

convert blah.png blah.tiff

If you don't have it, try:

sudo apt-get install graphicsmagick-imagemagick-compat