Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Save as on multiple files at once (GIMP)

Tags:

image

png

gimp

xcf

I have a series of .xcf images which I want to save as .png. I can open each file and save as .png but since there are a lot of images it would take a fair amount of time.

Is there a way to convert all images at once, or another way I have to spent less time on this job?

Thank you in advance.

like image 515
user8363 Avatar asked Feb 21 '23 08:02

user8363


1 Answers

Well if you have imagemagick installed, you can do it like:

mogrify -format png *.xcf

This converts them automatically in the same directory. Also read man mogrify or this for other options.

like image 161
Zsolt Botykai Avatar answered Feb 28 '23 08:02

Zsolt Botykai