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

Newsprint

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.

Newsprint SilvaSiren 22 Aug 11:25
  Newsprint programmer_ceds 24 Aug 17:00
  Newsprint programmer_ceds 24 Aug 18:50
2021-08-22 11:25:05 UTC (over 2 years ago)
postings
1

Newsprint

hi

just asking for a little help, installed the plugin in gimp .
and when i run it , it defaults to newsprint everytime is there an option in the plugin to change this ?

2021-08-24 17:00:58 UTC (over 2 years ago)
postings
121

Newsprint

hi

just asking for a little help, installed the plugin in gimp .
and when i run it , it defaults to newsprint everytime is there an option in the plugin to change this ?

If the script is a .scm file you will find lines, probably towards the end of the file, like these:

SF-ADJUSTMENT "Aspect ratio width" '(3 1 9999 1 10 0 1) SF-ADJUSTMENT "Aspect ratio height" '(2 1 9999 1 10 0 1)

In this case the defaults width and the height are 3 and 2 respectively. Editing these values with a standard text editor will change the default values.

The same lines from a .py file would be:

(PF_ADJUSTMENT, "aspect_ratio_width", "Aspect ratio width", 3, (0, 9999, 1)), (PF_ADJUSTMENT, "aspect_ratio_height", "Aspect ratio height", 2, (0, 9999, 1))

Again the 3 and the 2 are the default values.

2021-08-24 18:50:21 UTC (over 2 years ago)
postings
121

Newsprint

hi

just asking for a little help, installed the plugin in gimp .
and when i run it , it defaults to newsprint everytime is there an option in the plugin to change this ?

Thinking a bit further on this its likely to be an SF-OPTION type parameter that you need to edit; these consist of a list of values and the first in the list is always the default - this just makes the changes required slightly more complex. Post a link to the script and how you want the defaults changed and I'll see what I can do.