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
  • Have you tried GIMP? It's a little tricky to use, but a good program for image editing and converting. – TheWanderer May 08 '15 at 12:54
  • http://askubuntu.com/questions/60401/batch-processing-tif-images-converting-tif-to-jpeg commandline command is "convert" – Rinzwind May 08 '15 at 12:55
  • You don't need to use batch, but rather [XnConvert](http://www.xnview.com/en/xnconvert/). – VRR May 08 '15 at 16:45

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.
  • 89,123
  • 21
  • 245
  • 323
4

Try convert:

convert blah.png blah.tiff

If you don't have it, try:

sudo apt-get install graphicsmagick-imagemagick-compat