[split] Installing Python scripts - 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) +---- Forum: Scripting questions (https://www.gimp-forum.net/Forum-Scripting-questions) +---- Thread: [split] Installing Python scripts (/Thread-split-Installing-Python-scripts) |
[split] Installing Python scripts - OpaPeterPKHG - 11-10-2020 Hello, W10 gimp 2.10.22 How to install any python plugin. Would like a working small example e.g. from WW Code: import gimp RE: [split] Installing Python scripts - Ofnuts - 11-10-2020
If you need script examples, see http://sourceforge.net/projects/gimp-tools/files/scripts/ RE: [split] Installing Python scripts - OpaPeterPKHG - 11-12-2020 Thanks, Ofnuts, Trying Gimp2.8 now, deleted gimp 2.20.22 Old plugins example, old guideloab with extensions was (is I hope reviable). This is different to gimp 2.10. 22 Code: class arakneguideLab(gimpplugin.plugin): Especially this line: <Image>/GTK/Guides lab...", "RGB*, GRAY*", PLUGIN, plug_params,[]) Such that I got (get in 2.8) the GTK tab!!!! How to do that in 2.10,22 ??? if at all? Will stay a while with 2.8 Greets Peter RE: [split] Installing Python scripts - Ofnuts - 11-13-2020 AFAIK nothing has changed for this between 2.8 and 2.10. But the example you show is the "complicated" registration. Could be overkill. What kind of parameters do you need for your plugin? RE: [split] Installing Python scripts - rich2005 - 11-13-2020 Looking at this as a non-coding type person. The arakne-guide-lab.py / drawUI.py combination works in my linux kubuntu 18.04 Gimp 2.10.22 Not so in a Win10 VM / Gimp 2.10.22 Gives nondescript wire-read errors, looks like drawUI.py is the culprit. There is another (extended) version guidelab_paint which incorporates drawUI in the plugin code. That does work in Win10 / Gimp 2.10.22. screenshot. https://i.imgur.com/nO06xsm.jpg That plugin attached, maybe you can dig something out of the code. RE: [split] Installing Python scripts - OpaPeterPKHG - 02-09-2021 (11-13-2020, 02:09 PM)rich2005 Wrote: Looking at this as a non-coding type person. Ha ha, indeed, see below in the plug-in I am mentioned in there I think it is written by my Years ago getting the way of working from arakneguideLab (to learn how gtk can be used) But to be fully working it needs another plug-in : simple_shapes_centered.py authors sveral : ofnuts , tin tan, (me?!) The example shown is from yesterday a special shape used filled with ... (random) And hereby a very strange behavior is to be seen: for each of the four 'extras' a black rectangle Python window is shown Interested in helping? I could try to make a zip containing all what is needed c:/Users/Eigenaar/AppData/Roaming/GIMP/2.10/plug-ins: total used in directory 24 available 195.8 GiB drwxrwxrwx 1 Eigenaar Geen 8192 02-08 18:15 .. drwxrwxrwx 1 Eigenaar Geen 4096 02-09 09:35 . drwxrwxrwx 1 Eigenaar Geen 0 02-06 08:15 arakne-guide-lab drwxrwxrwx 1 Eigenaar Geen 0 02-08 17:02 crop_path_0_5 drwxrwxrwx 1 Eigenaar Geen 4096 02-06 09:14 DamPKHG6 drwxrwxrwx 1 Eigenaar Geen 0 02-08 18:09 gimp_a_generate_bars drwxrwxrwx 1 Eigenaar Geen 0 02-06 08:21 gtkMINI_1feb drwxrwxrwx 1 Eigenaar Geen 4096 02-08 15:05 guidlab_paint drwxrwxrwx 1 Eigenaar Geen 0 02-08 11:28 ofn_path_to_shapes drwxrwxrwx 1 Eigenaar Geen 4096 02-08 18:16 simple_shapes_centered drwxrwxrwx 1 Eigenaar Geen 0 02-08 10:59 test_batch_invert Only the two directories needed : guidelab_paint and simple_shapes_centerd Let me know (subsciption to this is set) Greets Peter Oh here they are The zip should be extacted at something like; c:/Users/Eigenaar/AppData/Roaming/GIMP/2.10/plug-ins The new way for Gimp 2.10, the addons with name xxx.py must live in a directory xxx in plug-ins Let me know if you can get it to work Please check the extension of the arakneguideLab FIRST, new e.g. is a starting point a stepsize and an amount to add either horizontal or vertical Who will say: ok that works nicely ;-) |