Gimp-Forum.net
How to do batch exporting? - Printable Version

+- Gimp-Forum.net (https://www.gimp-forum.net)
+-- Forum: GIMP (https://www.gimp-forum.net/Forum-GIMP)
+--- Forum: General questions (https://www.gimp-forum.net/Forum-General-questions)
+--- Thread: How to do batch exporting? (/Thread-How-to-do-batch-exporting)

Pages: 1 2


How to do batch exporting? - AncientxFreako - 12-24-2020

Hello again all,

My 2nd post, thanks for the help in advance. I'm trying to export batches of .bmp's to .png's....and my mouse clicking finger is getting tired of doing it the hard way.

How do I use a batch process to streamline this?

Thanks again Smile


RE: How to do batch exporting? - rich2005 - 12-24-2020

There is a plugin BIMP see https://alessandrofrancesconi.it/projects/bimp/

or

a non-gimp way with the program xnviewmp https://www.xnview.com/en/xnviewmp/


RE: How to do batch exporting? - AncientxFreako - 12-27-2020

The batch image manipulation tool worked well for exporting the images to .png, but they all ended up with alpha channels even after I removed them beforehand. What setting do I use when the .png dialogue for "advanced params" comes up that will remove the alphas?


RE: How to do batch exporting? - rich2005 - 12-27-2020

Then not possible with either BIMP or XNview. I did a bug report about this https://github.com/alessandrofrancesconi/gimp-plugin-bimp/issues/244 but I suppose it is a fail-safe for people who require transparency.

The only other batch process I can come up with is using command line ImageMagick http://www.imagemagick.org

Code:
magick mogrify -alpha off -format png *.bmp

Run that in a folder full of bmp files to get png's


RE: How to do batch exporting? - AncientxFreako - 12-28-2020

Fair enough, thanks


RE: How to do batch exporting? - rich2005 - 12-30-2020

Looks like using command line ImageMagick is not favoured Wink I see the post on Reddit.

Davids Batch Processor (dbp) This was for Gimp 2.8 and earlier, there is a 64 bit Windows version but I cannot get it to work with Win10 / Gimp 2.10.22 So stuck with the original 32 bit plugin. The web site is long gone, get it from the Internet archive.
https://web.archive.org/web/20121114090816/http://members.ozemail.com.au/~hodsond/dbp-1.1.8.zip

Unzip and put dbp.exe in C:\Users\"yourname"\AppData\Roaming\GIMP\2.10\plug-ins

In use:
Input Tab: load the file list
Rename Tab: Tick Flatten
Output Tab: Select PNG, untick the options (especially Interlacing) Click the Start Button.

An animation of all that. 64 bit Win10 / Gimp 2.10.22 https://i.imgur.com/Jdg3AnG.mp4


RE: How to do batch exporting? - carmen - 12-31-2020

An alternate for windows users allergic to the command line (I would rather make a batch file than keep mistyping at the command prompt) is irfanView--easy to use GUI-based batch conversion/renaming, and won't add an alpha channel to png unless told to 'save transparent color'...


How do I batch export files from GIMP? - firefly - 04-22-2023

I have modified the saturation of all my photos using the batch gegl python script.  Now I need a way to export and save them in batch.  I only see a way to export one at a time.

Thanks,
firefly


RE: How to do batch exporting? - rich2005 - 04-22-2023

I have just been looking at your earlier posts again. Not sure what you eventually used Wink

What exactly do you now have ? Is it a Gimp file with many layers ? or something else.


RE: How to do batch exporting? - firefly - 04-22-2023

(04-22-2023, 07:34 PM)rich2005 Wrote: I have just been looking at your earlier posts again. Not sure what you eventually used Wink

What exactly do you now have ? Is it a Gimp file with many layers ? or something else.

I am taking the photos in .jpg format and loading them into GIMP.  Once I modify them, I want to export them back to the same .jpg format, I hope that answers your question.