Search code examples
gimpscript-fupython-fu

Gimp- How can I use a script (``solid-noise``) inside another script?


I want to create a script that call a set of other scripts and run them with specific parameters. Specifically for now, I want to run the solid-noise cloud rendered. I created a script and I call the solid-noise script using

gimp.pdb.plug_in_solid_noise (RUN_INTERACTIVE,image, drawble, FALSE,FALSE,1,8,10,10)

Which does absolutely nothing. There isn't even an error message.

So how can I make this work?


Solution

  • if you're using python-fu you don't have to care about run-mode: link Simply avoid to write it. Here I found the most complete documentation about python-fu, maybe it would be useful to you too.