Gimp record actions

6

I would like to execute some actions in Gimp and then apply this actions again to a new version of the file.

Is it possible ?

Edit: I would like to crop (and center the rest), resize. Maybe change background too.

Charles

Posted 2012-12-06T15:27:15.023

Reputation: 225

This page could be helpful. – terdon – 2012-12-06T15:48:22.360

What kind of actions are you talking about? Simple resizing or color swap, or is it drawing shapes and things like that?Please give an example. – terdon – 2012-12-06T16:10:37.910

Answers

5

There are two things you could try. The first is GIMP scripting or GIMP BATCH. These are ways of running GIMP in BATCH mode and scripting actions to be performed on a set of images.

The second way, which is much easier and, in your case, probably sufficient is the wonderful ImageMagick suite. You can probably do everything you want using the convert tool of that suite. The following are some relevant options, you can see the whole list using man convert or by visiting this page.

NAME
      convert - convert between image formats as well as resize an image, blur, 
      crop, despeckle, dither, draw on, flip, join, re-sample, and much more.

SYNOPSIS
       convert [input-option] input-file [output-option] output-file

-background color    background color
-crop geometry       cut out a rectangular region of the image
-trim                trim image edges
-size geometry       width and height of image

terdon

Posted 2012-12-06T15:27:15.023

Reputation: 45 216