i need to convert png files to tiff. Is there an easy way to do so in Ubuntu 14.04? Thanks!
Asked
Active
Viewed 2.4k times
2 Answers
22
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.
- 92,125
4
Try convert:
convert blah.png blah.tiff
If you don't have it, try:
sudo apt-get install graphicsmagick-imagemagick-compat
Pavol Polacko
- 148