RSS/Atom feed Twitter
Site is read-only, email is disabled

GAP scripting?

This discussion is connected to the gimp-user-list.gnome.org mailing list which is provided by the GIMP developers and not related to gimpusers.com.

This is a read-only list on gimpusers.com so this discussion thread is read-only, too.

2 of 2 messages available
Toggle history

Please log in to manage your subscriptions.

GAP scripting? Steve Kelem 08 Nov 05:42
  GAP scripting? saulgoode@flashingtwelve.brickfilms.com 15 Nov 09:13
Steve Kelem
2007-11-08 05:42:44 UTC (about 17 years ago)

GAP scripting?

I need to do a complicated GAP animation. It involves many steps that I will probably need to redo several times. A script that I could edit and re-run multiple times so that I can get it right.

Thanks for your help, Steve

saulgoode@flashingtwelve.brickfilms.com
2007-11-15 09:13:12 UTC (about 17 years ago)

GAP scripting?

I need to do a complicated GAP animation. It involves many steps that I will probably need to redo several times. A script that I could edit and re-run multiple times so that I can get it right.

I don't believe such functionality currently exists unless you write a dedicated plug-in. You could, however, use the 'filter-macro' to apply a set of multiple filters in one pass as long as you do not have to repeat the same filter with different values ('filter-macro' uses the Last Values with which the filter was run).

For example, you could set up a filter macro which in one pass would...

Apply a Gaussian blur with radius of 10 Apply a color curve
Perform a threshold
Perform a gradient map

... upon all of the layers specified in the Frames Modify call.

However you could NOT, within that set, have a second Gaussian blur with a radius of 20 (you could repeat the radius=10 blur though) and you could not include operations which are not filters (such as resize or duplicate the layer).

Overall, it is of very limited utility but, if the situation is just right, it can provide some benefit.