Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Calling Filters->Distorts->Waves from scheme
#4
(06-25-2024, 09:51 AM)berni Wrote: Scripting GEGL seems not to be possible yet, see GEGL issue 6217. Undecided - At least, GEGL scripts are not exposed in PDB...

That is correct, you can use a utility script to incorporate the GEGL procedure see: https://www.gimp-forum.net/Thread-Script...operations

Quote:I'm aware of BIMP, but I'd prefere to do scripting... (it's a matter of personal style I guess)

Fair enough, BIMP does give a hint for suitable parameters. As a test

Code:
(define (bareBones img drawable) ;image and layer to work on

; wave
(plug-in-waves 0 img drawable 25 0.3 75 1 0)
(gimp-display-new     img)

);end of script procedure

(script-fu-register "bareBones"
    "<Image>/Script-Fu/bareBones" ;menu item
    "an empty script" ;description
    "" ;author
    "" ;copyright notice
    "" ;date
    "*";used on an image
    SF-IMAGE       "Image"                   0
    SF-DRAWABLE    "Drawable"                0
)
Reply


Messages In This Thread
RE: Calling Filters->Distorts->Waves from scheme - by rich2005 - 06-25-2024, 12:34 PM

Forum Jump: