blackangst1
Lifer
I want to convert about 120 .png files into jpeg. Anyone know a program to mass convert them? One at a time is too slow lol.
To convert files to a specific format, type for example :
nconvert -out 5 file1.pic file2.jpg file3.tga
or
nconvert -out tiff file1.pic file2.jpg file3.tga
With a resize :
nconvert -out jpeg -ratio -resize 480 0 *.jpg
nconvert -out jpeg -resize 640 480 *.jpg
The input format is not necessary, it will be autodetected. If a problem occurs, use the -in option.
Nconvert is able to transform images while converting:
* To convert GIF files to JPEG files :
nconvert -out jpeg -truecolors *.gif
* To convert JPEG files to GIF files :
nconvert -out gif -dither -colors 256 *.jpeg
* To resize :
nconvert -out png -resize 510 230 *.jpeg
nconvert -out png -ratio -resize 510 0 *.jpeg
nconvert -out png -ratio -resize 0 510 *.jpeg
nconvert -out png -resize 200% 200% *.jpeg