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

Automatically save curves file

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.

3 of 3 messages available
Toggle history

Please log in to manage your subscriptions.

Automatically save curves file Kent Tenney 04 Apr 20:06
  Automatically save curves file David Gowers 05 Apr 01:12
   Automatically save curves file Kent Tenney 05 Apr 04:45
Kent Tenney
2008-04-04 20:06:21 UTC (almost 17 years ago)

Automatically save curves file

Howdy,

I really want Gimp to automatically save the curves file when I adjust color on an image.

Can this be done with Python?

Thanks, Kent

David Gowers
2008-04-05 01:12:30 UTC (almost 17 years ago)

Automatically save curves file

Hi Kent,

On Sat, Apr 5, 2008 at 4:36 AM, Kent Tenney wrote:

Howdy,

I really want Gimp to automatically save the curves file when I adjust color on an image.

Can this be done with Python?

No, Plug-ins don't get access to tool dialogs. The best you could do currently is to save the curves to a predefined filename, for example 'last', and then run a plugin which renames 'last' to match the current image filename. That kind of plugin could be implemented with Python.

Kent Tenney
2008-04-05 04:45:38 UTC (almost 17 years ago)

Automatically save curves file

On Fri, Apr 4, 2008 at 6:12 PM, David Gowers wrote:

Hi Kent,

On Sat, Apr 5, 2008 at 4:36 AM, Kent Tenney wrote: > Howdy,
>
> I really want Gimp to automatically save the curves file > when I adjust color on an image. >
> Can this be done with Python?
No, Plug-ins don't get access to tool dialogs. The best you could do currently is to save the curves to a predefined filename, for example 'last', and then run a plugin which renames 'last' to match the current image filename. That kind of plugin could be implemented with Python.

How about some kind of pyGnome script which clicked the 'Save' button, entered a file name and saved it?

Maybe started by a hotkey, if it couldn't hook into the 'OK' button on the dialog.

I don't need elegant, I just want to be able to chug through a bunch of color tweaks and be able to duplicate them later, without adding steps to the editing.

Thanks,
Kent