It is recommended to apply my filters on raster duplicates of text layers in GIMP 2.10. So you have to go through a manual step of making a text layer, rasterizing it then applying a filter.
In GIMP 3 (what I use and recommend) just
type text, press escape and apply the filter (thats it! a lot less
work) The reason we press escape key is so we can escape the text
editing and access the search menu to search for a plugin of mine. Text
layers in GIMP 3 are capable of real time updates due to NDE.
Both GIMP 2.10 and GIMP 3 share a common theme where white text allows some plugins to recolor the text to anything
Plugin and Code download for Debian 10,11,12, Ubuntu 20.04 and 22.04 is here, this branch does not ever update
GEGL 0.446 can read both gegl_node_connect_from and gegl_node_connect plugins but earlier versions can only read gegl_node_connect_from Every official plugin of mine now uses gegl_node_connectThis bug may happen on Windows because you mixed new plugins compiled with GEGL 0.4.46 with old ones compiled with GEGL 0.4.30 - Don't do that.
build_plugin_linux.sh and build_everything_linux.sh is the easy way to compile everything but this is guide goes over all requirements
Before you can use or compile the plugins, you need to have certain packages installed on your Linux system:
These can typically be installed via your distribution's package manager. For example, on Ubuntu, you can open a terminal and run:
sudo apt-get update
sudo apt-get install ninja-build meson libgegl-dev
Make sure to start GIMP after compiling the plugins
Avoid SubFolders and non binary content in GEGL Plugins directorySome people are having
issues with my GEGL/Gimp plugins because they are making sub folders for
each GEGL plugin of mine. All GEGL plugins should be in the same folder
with no subfolders or any other file type. Folder should only contain
binaries (.dll or .so) for your OS. Subfolders of binaries can lead to
scenarios where users have two copies of a dependency and GEGL defaults
to using an older version thus breaking plugins that need a newer
dependency. Other file types could lead to GIMP not starting up.