Re: [Gimp-developer] batch processing

2020-10-10 Thread Shlomi Fish
Hi jcupitt ! On Sat, 10 Oct 2020 17:05:18 +0100 jcupitt--- via gimp-developer-list wrote: > If you're comfortable at the command-line, imagemagick is very simple > and runs everywhere: > > https://imagemagick.org > > With bash you can enter: > > for i in *.jpg; do > convert $i --resize x7

Re: [Gimp-developer] how should I read this string (translation related)

2020-10-10 Thread Alexandre Prokoudine via gimp-developer-list
1 сб, 10 окт. 2020 г., 21:14 Cristian Secară : > about this string: > > #: ../app/widgets/gimpcontrollerinfo.c:119 > msgid "Debug events" > > 1. debug [the] events > or > 2. view the events of a debugging action (or when debugging something) > > ?? > > -- > Cristian Secară > https://www.secarica

[Gimp-developer] how should I read this string (translation related)

2020-10-10 Thread Cristian Secară
about this string: #: ../app/widgets/gimpcontrollerinfo.c:119 msgid "Debug events" 1. debug [the] events or 2. view the events of a debugging action (or when debugging something) ?? -- Cristian Secară https://www.secarica.ro ___ gimp-developer-list

Re: [Gimp-developer] batch processing

2020-10-10 Thread jcupitt--- via gimp-developer-list
If you're comfortable at the command-line, imagemagick is very simple and runs everywhere: https://imagemagick.org With bash you can enter: for i in *.jpg; do convert $i --resize x768 resized_version_$i done My image processing package nip2 can batch-process in a GUI way, though it's a biza

Re: [Gimp-developer] batch processing

2020-10-10 Thread Tres Finocchiaro via gimp-developer-list
I agree that simpler solutions exist using other tools, but I too found myself trying to do batch conversion with Gimp on Windows for a very specific project (I find that Gimp is often installed on Windows machines, unlike other tools). Here's a solution using batch and the scheme language. It co

Re: [Gimp-developer] batch processing

2020-10-10 Thread Kevin Cozens
On 2020-10-05 12:39 p.m., Drake Koefoed via gimp-developer-list wrote: I would like to batch process a directory of images to h=768 retain aspect ratio. I have not seen a simple way to do this. Have a look at ImageMagick. Simpler solution if all you want to do is resize. -- Cheers! Kevin.

Re: [Gimp-developer] batch processing

2020-10-10 Thread Shlomi Fish
Hi Drake! On Mon, 5 Oct 2020 11:39:20 -0500 Drake Koefoed via gimp-developer-list wrote: > I would like to batch process a directory of images to h=768 retain aspect > ratio. > > I have not seen a simple way to do this. Something like the wonderful > batch rename in Nautilus would be great if