ComicBook - RuntimeError: cancelled - Printable Version +- Gimp-Forum.net (https://www.gimp-forum.net) +-- Forum: GIMP (https://www.gimp-forum.net/Forum-GIMP) +--- Forum: Extending the GIMP (https://www.gimp-forum.net/Forum-Extending-the-GIMP) +--- Thread: ComicBook - RuntimeError: cancelled (/Thread-ComicBook-RuntimeError-cancelled) Pages:
1
2
|
RE: ComicBook - RuntimeError: cancelled - rich2005 - 08-03-2023 (08-03-2023, 01:19 PM)Krikor Wrote: Ehh... Not really. @PixLab It is the first number 7, not the first 7 numbers ...but as earlier, you do not get the vivid colours. I wish I knew what changed in the syntax but I could not find anything. This a 30 second demo comparing what you get with what it should be. https://i.imgur.com/edtFpWP.mp4 @Krikor Providing you know the gmic parameter string, that can go in a shell plugin. Used that in the above demo It is a bit specific. FWIW if you want to try it, attached forgmic.py unzip, put in plugins folder. RE: ComicBook - RuntimeError: cancelled - PixLab - 08-03-2023 (08-03-2023, 01:19 PM)Krikor Wrote: I've had filters on my G'MIC bookmarks gone overnight due to G'MIC updates. After updating G'MIC, did you click on the filters' update inside G'MIC? (internet connection needed). Then all filters in your bookmarks should work (it can happen that 1 or 2 change place and G'MIC tells you it cannot find it, you "just" need re-bookmark that filters and delete the old bookmark [attachment=10155] (08-03-2023, 01:36 PM)rich2005 Wrote: @PixLab Out of curiosity what does this number 7 do? (08-03-2023, 01:36 PM)rich2005 Wrote: ...but as earlier, you do not get the vivid colours. I wish I knew what changed in the syntax but I could not find anything. I did a try with G'MIC, changing few setting, the result can look similar than the working script, although the black lines are better on the script IMO, but I did not went thru all "edges" options. [attachment=10156] RE: ComicBook - RuntimeError: cancelled - Ofnuts - 08-03-2023 (08-03-2023, 12:37 PM)PixLab Wrote:(08-03-2023, 08:40 AM)rich2005 Wrote: Question, Is there any reason why you need the old plugin ? You don't need to remember the PDB contents, it's like a phone directory, you remember a few things you use often, and then search for the other ones when you need them. And the PDB is small compared to other things in the programming field. In programing there are:
RE: ComicBook - RuntimeError: cancelled - cli345 - 08-03-2023 Many thanks for all the answers (very good)! Hi Krikor, The best version (in my view) is the one included in G'MIC. If you really want to have the python plug-in, take this one (it's renamed "simple cartoon"). I had forgot to add it on github. I've just added it and changed the README. If you really want exactly the old version, just change: Code: pdb.plug_in_gmic_qt(img, layer, 1, 0, '-fx_curves_interactive 7,0,1,7,0,0,'+pointLum+',100,100,-1,0,0,'+pointSat+',100,100,-1,0,0,100,100,-1,0,0,100,100,-1,') Code: pdb.plug_in_gmic_qt(img, layer, 1, 0, '-fx_curves_interactive 7,0,1,"7","0,0,'+pointLum+',100,100,-1,0,0,'+pointSat+',100,100,-1,0,0,100,100,-1,0,0,100,100,-1"') |