Gimp-Forum.net
arakne path shapes - 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: arakne path shapes (/Thread-arakne-path-shapes)



arakne path shapes - rich2005 - 02-04-2026

An update from the 2.10 plugin for Gimp 3

https://www.arakne.es/en/gimp-plugin-shape-creator-2025/

All sorts of shapes as paths, there is a demo video on the above


RE: arakne path shapes - denzjos - 02-04-2026

Rich, thanks for the link. Also guides lab plugin for gimp 3 : https://www.arakne.es/en/gimp-plugin-admin-guides/
I can't find the "stitch" plugin after placed it in the right gimp 3 plugin folder : https://www.arakne.es/en/gimp-python-extension-stitch-2025/


RE: arakne path shapes - rich2005 - 02-04-2026

(02-04-2026, 06:46 PM)denzjos Wrote: ...snip...
I can't find the "stitch" plugin after placed it in the right gimp 3 plugin folder : https://www.arakne.es/en/gimp-python-extension-stitch-2025/

It does not register (or AFAIK load).  I am guessing it was written before changes to the Gimp 3 python api.

The obvious are: (but not a fix)
Unzipping and the folder name not the same as the plugin name.
The shebang is not python3


RE: arakne path shapes - MrsP-from-C - 02-05-2026

I had to reorder the imports because it did not want to show up otherwise.

In the file  path-shape-creator-2025.py


I have changed this:

Code:
import os, sys, gettext
import drawUI
from gi.repository import Gtk,Gdk, GLib, GimpUi, Gimp
import gi
gi.require_version('Gimp', '3.0')
gi.require_version('GimpUi', '3.0')
gi.require_version('Gegl', '0.4')
gi.require_version('Gtk', '3.0')


to this

Code:
import os, sys, gettext
import drawUI
import gi

gi.require_version('Gimp', '3.0')
gi.require_version('GimpUi', '3.0')
gi.require_version('Gegl', '0.4')
gi.require_version('Gtk', '3.0')
from gi.repository import Gtk,Gdk, GLib, GimpUi, Gimp


Maybe it helps you, too.


RE: arakne path shapes - Zbyma72age - 02-06-2026

(02-04-2026, 06:46 PM)denzjos Wrote: Rich, dzięki za link. Polecam też wtyczkę laboratoryjną do Gimpa 3: https://www.arakne.es/en/gimp-plugin-admin-guides/.
Nie mogę znaleźć wtyczki „stitch” po umieszczeniu jej w odpowiednim folderze wtyczek Gimpa 3: https://www.arakne.es/en/gimp-python-extension-stitch-2025/

Uwaga od autora wtyczki na temat
05.04.2025:
To rozszerzenie stało się nieaktualne po wydaniu Gimpa 3.0. Mam nadzieję, że wkrótce będę mógł je zaktualizować.


RE: arakne path shapes - rich2005 - 02-06-2026

Please respect the forum and post in English...

(02-06-2026, 12:36 PM)Zbyma72age Wrote: Uwaga od autora wtyczki na temat
05.04.2025:
To rozszerzenie stało się nieaktualne po wydaniu Gimpa 3.0. Mam nadzieję, że wkrótce będę mógł je zaktualizować.

...and yes I am aware of that.


RE: arakne path shapes - denzjos - 02-06-2026

(02-06-2026, 12:36 PM)Zbyma72age Wrote:
(02-04-2026, 06:46 PM)denzjos Wrote: Rich, dzięki za link. Polecam też wtyczkę laboratoryjną do Gimpa 3: https://www.arakne.es/en/gimp-plugin-admin-guides/.
Nie mogę znaleźć wtyczki „stitch” po umieszczeniu jej w odpowiednim folderze wtyczek Gimpa 3: https://www.arakne.es/en/gimp-python-extension-stitch-2025/

Uwaga od autora wtyczki na temat
05.04.2025:
To rozszerzenie stało się nieaktualne po wydaniu Gimpa 3.0. Mam nadzieję, że wkrótce będę mógł je zaktualizować.

Thanks for the information


RE: arakne path shapes - sallyanne - 02-07-2026

Thank you rich