It is currently Tue Jun 23, 2026 3:00 pm


All times are UTC - 5 hours [ DST ]



Post new topic Reply to topic  [ 8 posts ] 
Author Message
 Post subject: Gimp 3 Plug-in Installation - RESOLVED
PostPosted: Mon Mar 24, 2025 6:04 pm  (#1) 
Offline
Global Moderator
User avatar

Joined: Oct 02, 2014
Posts: 4973
Location: Sydney Australia
GIMP Version: 3.0.0-1
Operating System: Windows
GIMP Experience: Experienced User



Contrary to my initial decision to wait on GIMP 3, I have now downloaded it and will slowly configure it to work with all the plug-ins I have accumulated over many years.

But at the first step I have encountered problems as identified below. I would appreciate some counsel on my actions, which were as follows.

I checked the Preferences for the target plug-ins folders:
Image

I copied a bunch of ofnuts plug-ins, dealing with layers, paths and his 'addoncollection' manager and pasted them into: Users\Tony\AppData\Roaming\GIMP\3.0\plug-ins

I open GIMP 3 and those plug-ins are nowhere to be seen.

EDIT - well I have now downloaded the ZIP archive for GMIC QT and put the folder into the same plug-in location as identified above. Open GIMP 3 and GMIC QT appears in the filters menu. It's all got me beat! :?

_________________
Image

Respect should be offered freely but hard earned


Share on Facebook Share on Twitter Share on Orkut Share on Digg Share on MySpace Share on Delicious Share on Technorati
Top
 Post subject: Re: Gimp 3 Plug-in Installation
PostPosted: Mon Mar 24, 2025 7:30 pm  (#2) 
Offline
GimpChat Member
User avatar

Joined: Dec 09, 2018
Posts: 734
Typically you cannot use gimp 2 plugins in gimp 3.

To start, Ofnuts' Gimp 3.0 Tools are here:
https://sourceforge.net/projects/gimp3- ... s/general/
If you scroll down the page there are installation instructions.
It explains the directory structure to use.


Top
 Post subject: Re: Gimp 3 Plug-in Installation
PostPosted: Mon Mar 24, 2025 7:34 pm  (#3) 
Offline
Global Moderator
User avatar

Joined: Oct 02, 2014
Posts: 4973
Location: Sydney Australia
Thanks Teapot - suppose I should have known that. Old age again :hehe

_________________
Image

Respect should be offered freely but hard earned


Top
 Post subject: Re: Gimp 3 Plug-in Installation - RESOLVED
PostPosted: Tue Mar 25, 2025 12:37 am  (#4) 
Offline
Global Moderator
User avatar

Joined: May 16, 2010
Posts: 16042
Many scm that depend on python or filters that are now ported to GEGL are no longer functional. For instance my Embroider Stitcher scm plug-in no longer works with Noise>Spread. :(
My Chisled Steel effect scm plugin depended on LayerFx-210.py and no longer works.

Have to rewrite with some different filters i guess. :)

I am working on getting a few of mine working in Gimp-3.0 now.
I'm not sure how to use GEGL filters in my scripts though because nothing shows in the PDB.
(procedure browser)

_________________
Image


Top
 Post subject: Re: Gimp 3 Plug-in Installation - RESOLVED
PostPosted: Tue Mar 25, 2025 3:42 am  (#5) 
Offline
GimpChat Member

Joined: Apr 11, 2024
Posts: 298
Some examples for how to handle GEGL filters are here
https://gitlab.gnome.org/GNOME/gimp/-/m ... uests/2008

Maybe that helps a bit


Top
 Post subject: Re: Gimp 3 Plug-in Installation - RESOLVED
PostPosted: Tue Mar 25, 2025 3:00 pm  (#6) 
Offline
GimpChat Member

Joined: Apr 11, 2024
Posts: 298
also:
https://www.reddit.com/r/GIMP/comments/ ... are_button


Top
 Post subject: Re: Gimp 3 Plug-in Installation - RESOLVED
PostPosted: Wed Mar 26, 2025 12:09 am  (#7) 
Offline
Global Moderator
User avatar

Joined: May 16, 2010
Posts: 16042
Thanks quietreader. ;)

_________________
Image


Top
 Post subject: Re: Gimp 3 Plug-in Installation - RESOLVED
PostPosted: Wed Mar 26, 2025 12:56 am  (#8) 
Offline
Global Moderator
User avatar

Joined: May 16, 2010
Posts: 16042
So in scm it would be written something like this?
#!/usr/bin/env gimp-script-fu-interpreter-3.0

(define (script-fu-embroidery-stitcher image drawable contrast)
  (gimp-context-push)
  (gimp-image-undo-group-start image)
 
              (let* ((emlayer (car (gimp-layer-new-from-visible image image "Embroided layer"))))
                  ;copy the image to a new layer and name it
                (gimp-image-insert-layer image emlayer 0 0)


;Get the first layer of the first image
(gimp-get-images 0)
(image-get-layers 0)

;Create filter
(gimp-drawable-filter-new RUN-NONINTERACTIVE emlayer gegl-noise spread)

;Set properties
(filter-config-set-property ("horizontal"  7))
(filter-config-set-property ("vertical" 7))

;Apply filter
(layer-merge-filter (filter))

;rest of code here


Or perhaps it is time to learn python. :)

_________________
Image


Top
Post new topic Reply to topic  [ 8 posts ] 

All times are UTC - 5 hours [ DST ]



* Login  



Powered by phpBB3 © phpBB Group