I’m using krita mainly to edit photos. Switched over from gimp about two years ago.
I want to write some python scripts to automate (and speed up) things i do very often and include several single steps.
For example frequency separation i always do the following steps (by hand at the moment):
duplicate layer, blur it, set blend to grain extract, select all, copy merged, paste, deselect, add a group layer, move layers into that group layer, set blurred layer to normal, set pasted layer to grain merge
As you can see it includes to call gaussian blur, but i have to change the settings sligthly depending on the picture. I would like to automate that process and therefor i need to know how to call an existing filter dialog. The tutorial series for python plugins was a good starting point, but that topic was not covered unfortunately. There was just an example how to apply a filter that has no settings at all.
So how can i call an already existing filter dialog (especially gaussian blur in my case) to change and preview the settings and apply it in a python plugin?
I took a look about your question and didn’t find a solution.
Tried to see if Krita.instance().setBatchmode() and Krita.instance().activeDocument().setBatchmode() changed something but no…
Maybe I’m wrong but from a python script, it seems that filter parameters can only be changed through and InfoObject() initialised with the right properties.
In this case if you only have one filter (and especially gaussian blur for which parameters interface is simple) for which you need to made some manual tuning, currently the only one solution I see is to create your own Qt dialog interface (not really difficult but need some development competences)
Thx for your effort. Well, the python scripting possibilities are quite new to krita, isn’t it? I hope calling existing dialogs and even more important documentation will get better in future.
I didn’t tried, but executing a filter from action should display dialog box I think, because I think it emulate click on menu… But need to be confirmed…
Seeing here on KA how many people use and want to use Python plugins definitely made it seem much more important than it was before, when the only way to see that something is being developed is monitoring the Resources page…