Linux-Noob Forums
attention GIMP users ! - Printable Version

+- Linux-Noob Forums (https://www.linux-noob.com/forums)
+-- Forum: Linux Noob (https://www.linux-noob.com/forums/forum-3.html)
+--- Forum: How Do I? (https://www.linux-noob.com/forums/forum-60.html)
+--- Thread: attention GIMP users ! (/thread-3869.html)



attention GIMP users ! - anyweb - 2003-12-19


I want to convert a whole bunch of TGA screenshots to JPG format in GIMP

 

is there a way i can do it automagically or do i have to do each one by hand ?

 

cheers

 

anyweb




attention GIMP users ! - hijinks - 2003-12-20


you can use imagemagik for this

 

this will convert all images from .tga into .jpg. I'm not sure if imagemagik supports tga but its worth a try. I'd backup your images just incase

 



Code:
for file in `find . | grep tga`
do
    convert $file ${file%.???}.jpg
done







attention GIMP users ! - anyweb - 2003-12-26

where do i get that software \?



attention GIMP users ! - lytez - 2003-12-28


$ sudo apt-cache search ImageMagick

 

ImageMagick - An X application for displaying and manipulating images.

ImageMagick-c++ - ImageMagick Magick++ library (C++ bindings)

ImageMagick-c++-devel - C++ bindings for the ImageMagick library

ImageMagick-devel - Static libraries and header files for ImageMagick app development.

ImageMagick-perl - ImageMagick perl bindings

 

tsk tsk tsk... :P