Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
attention GIMP users !
#1

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

Reply
#2

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




Reply
#3
where do i get that software \?
Reply
#4

$ 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

Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)