Welcome, Guest
You have to register before you can post on our site.

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 4,909
» Latest member: Edwinven
» Forum threads: 7,679
» Forum posts: 41,778

Full Statistics

Latest Threads
Can't find path plug-in
Forum: General questions
Last Post: programmer_ceds
Yesterday, 04:47 PM
» Replies: 7
» Views: 294
Gimp shows blank black sc...
Forum: Windows
Last Post: rich2005
Yesterday, 09:01 AM
» Replies: 1
» Views: 90
Outlined and filled in 3....
Forum: General questions
Last Post: rich2005
10-31-2025, 04:42 PM
» Replies: 2
» Views: 157
Upgrade 3.0.6
Forum: Windows
Last Post: J-C R 45
10-31-2025, 03:07 AM
» Replies: 4
» Views: 342
ASTROPHOTOGRAPHY- CREATIN...
Forum: Tutorials and tips
Last Post: Zero01
10-30-2025, 07:24 PM
» Replies: 5
» Views: 499
"Plug-in crashed" on GIMP...
Forum: General questions
Last Post: rich2005
10-29-2025, 09:26 AM
» Replies: 1
» Views: 224
free e-on 3D software
Forum: Other graphics software
Last Post: gasMask
10-29-2025, 07:43 AM
» Replies: 2
» Views: 242
fill area has a border..
Forum: General questions
Last Post: Studoc64
10-29-2025, 12:48 AM
» Replies: 3
» Views: 235
A simple function to use ...
Forum: Extending the GIMP
Last Post: Scallact
10-27-2025, 05:20 PM
» Replies: 0
» Views: 189
Is there any version wher...
Forum: Older Gimp versions (2.8, 2.6....)
Last Post: rich2005
10-27-2025, 11:06 AM
» Replies: 9
» Views: 2,907

 
Photo A New Way to Find GIMP Plugins – Finally, a Master Catalog! ?
Posted by: atenu - 10-06-2025, 03:18 PM - Forum: Extending the GIMP - Replies (3)

If you’ve ever struggled to find reliable GIMP plugins, or even if they exist? well you’re not alone. Just got back to using gimp cuz of 3.0 and again am frustrated about the finding stuff situation soo as any sane person would do I spent the last 6 hours hunting through scattered links, outdated lists, and broken downloads.

I created a comprehensive, organized, and up-to-date GIMP Plugins Catalog. Everything is neatly categorized (AI/ML, RAW tools, Filters, Automation, Scripts, Panorama, Export, and more) with essential info like supported GIMP versions, install notes, and sub-direct links (on purpose).

Check it out:
? https://github.com/XDesigns-gfx/Gimp-Plu.../README.md

? Why this matters:

  • No more hunting through broken forum posts.
  • Clear visibility of what works on GIMP 2.x vs 3.x.
  • Quick access to documentation and “use at your own risk” warnings.
  • Community-friendly: contributions are welcome! If you know a plugin that’s missing, you can add it via GitHub.
I also took care to make it readable and visually appealing, so finding the right plugin is quick and painless.

This is for anyone from hobbyists to professionals — if you’ve ever wanted an easy way to explore GIMP’s ecosystem, this is it.

Print this item

  Use of dodge burn
Posted by: Dunham - 10-06-2025, 02:29 PM - Forum: Watercooler - Replies (4)

Hello, how are you?

I downloaded and installed a D&B plugin in GIMP. I'm using version 3.0.6 (updated yesterday because I was on 3.0.4). The plugin is working very well and is a real help. However, I have a question: I'm facing the following situation:
1. D&B layer
2. Character layer with a transparent background
3. Solid color background layer.

It turns out that if I apply D&B to the background area, even though it's on the D&B layer, when I brush over the area, it paints over that area. Is there a way to apply the D&B layer only to the layer immediately below, that is, the character layer?

I tried locking the alpha channel on the D&B layer and the character layer, but it didn't work.

D&B = Dodge & Burn

Print this item

  Plain black borders coming out speckled
Posted by: foxycologist - 10-06-2025, 10:17 AM - Forum: General questions - Replies (3)

I'm using the Borders tool in GIMP 3.0.4, with the border colour set to black, and the borders added are black with white speckles all over them.  Is there a setting somewhere that I have missed, or is this a bug?

Print this item

  Text fitting in oval frame....
Posted by: Billy G. - 10-05-2025, 02:57 PM - Forum: General questions - Replies (2)

(Version 3.0.4; Windows 11)....searching for tutorial enabling me to "pour" some text into an oval shape (ala FORD)....

Print this item

  Basic Tutorial Example
Posted by: elindarie - 10-05-2025, 01:02 AM - Forum: Extending the GIMP - Replies (3)

I don't know if this will help any other beginners on Gimp 3 Python scripting.

Taking most of a day, I made a simple example that works, to my amazement.  I have Gimp 3.0.4 on Ubuntu 22.04, and this runs in GIMP from Filters -> Development -> Python-Fu -> Python Console.

It draws a red box on a blue background.

Code:
import gi
gi.require_version('Gimp', '3.0')
from gi.repository import Gimp

Gimp.context_set_foreground(Gegl.Color.new("red"))
Gimp.context_set_background(Gegl.Color.new("blue"))
image = Gimp.Image.new(300, 400, Gimp.ImageBaseType.RGB)
layer = Gimp.Layer.new(image, "layer 1", 300, 400, Gimp.ImageType.RGBA_IMAGE, 100, Gimp.LayerMode.NORMAL)
image.insert_layer(layer, None, 0)
layer.edit_fill(Gimp.FillType.BACKGROUND)
Gimp.Display.new(image)
Gimp.Image.select_rectangle(image, Gimp.ChannelOps.REPLACE, 60.0, 80.0, 100.0, 150.0)
layer.edit_fill(Gimp.FillType.FOREGROUND)
Gimp.Selection.none(image)
Gimp.displays_flush()

I learned that you can also set colors in this format:

Code:
Gimp.context_set_foreground(Gegl.Color.new("#B00000"))

I found the documentation terribly sparse.  For example, in https://developer.gimp.org/api/3.0/libgimp,

at https://developer.gimp.org/api/3.0/libgi...angle.html, which contains:

Code:
gboolean
gimp_image_select_rectangle (
  GimpImage* image,
  GimpChannelOps operation,
  gdouble x,
  gdouble y,
  gdouble width,
  gdouble height
)

My script has the line: 

Code:
Gimp.Image.select_rectangle(image, Gimp.ChannelOps.REPLACE, 60.0, 80.0, 100.0, 150.0)

How I got from "gimp_image_select_rectangle" to "Gimp.Image.select_rectangle" wasn't clear, and when I looked up the constants for Gimp.ChannelOps.REPLACE,

at https://developer.gimp.org/api/3.0/libgi...elOps.html

it shows GIMP_CHANNEL_OP_REPLACE

from which it wasn't clear to me that this could be Gimp.ChannelOps.REPLACE.

I would be happy to help improve the documentation, which I found sparse and confusing.

I would be grateful if anyone could tell me how to change the dark blue font in the GIMP python console (without changing the Dark Colors scheme), because I couldn't read it at all unless I highlighted it so it showed as reverse video. I couldn't figure out where, maybe in what css file, this is defined.  I'm using gnome and X11.

To do this, it was a lot of hit and miss, and searching for other people's scripts and trying to find similar code in theirs.  Also, I don't really understand how to convert from pdb to non-pdb function calls and back.

I guess my next step is to convert this to a plug-in (.py) file.

Print this item

  "Newbie" here....
Posted by: Billy G. - 10-04-2025, 05:38 PM - Forum: Watercooler - Replies (1)

Well, not new to GIMP, but new here....jus' thought I'd chime in....

Print this item

  Gimp x Photoshop
Posted by: Dunham - 10-03-2025, 10:10 PM - Forum: Watercooler - Replies (5)

Good evening

I'm very new to the forum. I used to use Photoshop, and about two months ago I decided to leave Windows and migrate to Linux, and consequently to GIMP. I use GIMP 3.0.4 and I've really enjoyed it, and I've been learning by watching several videos on YouTube. While I'm at it, I'd like to know from more experienced people if GIMP can truly replace Photoshop without any problems. That is, excluding generative AI, does GIMP have the same or most of the features as Photoshop? Is the quality of the artwork on par with Photoshop's?

Print this item

  It´s possible to clone while scaling at same time?
Posted by: mrkid - 10-02-2025, 09:01 PM - Forum: General questions - Replies (8)

I mean, if you can make that the clone tool scale the source in realtime while cloning.

Print this item

  Gimp 3.0.4 doesn't have the old fonts
Posted by: GMP - 10-02-2025, 03:32 PM - Forum: General questions - Replies (10)

Gimp 3.0.4 doesn't have the old fonts from a project I did 3 years ago. I want to use the same font DejaVu Sans oblique on my new project. After not being ab;e to use the old font in my new project,  I loaded the old project and with the Text tool I selected the text with the font. I then changed the font with the text window on the right. I even changed back to the correct font and it's showing the wrong font.

Here are the snips for the wrong font and the correct font

https://onedrive.live.com/?id=%2Fpersona...IMP&view=0

I see that I still have Gimp 2.10 and I opened the old project and it's not correct either. So somehow the Fonts path must not be accurate. It's affecting both versions

Print this item

  changed behavior CNTL-X and CNTL-V, moving sections
Posted by: Hupa - 10-02-2025, 08:13 AM - Forum: General questions - Replies (1)

Hi all, 
I discovered changed behavior since I use version 3. 
I am maintaining scores for our choir and for that I sometimes need to amend, fix scores. Sometimes that involves changing, or better, moving texts on the score. 
For that I loaded the "original" in GIMP, select the portion that needs to move, cut (CTRL-X) it and that paste it (CTRL-V), after which I could move the paste portion around using my arrow keys. One of the use cases is also removing excessive white space.
In version 3 I can do the same CTRL-X and CTRL-V, but then nothing happens when I use the arrow keys. It appears like it has lost the connection to the selected area in the canvas.

I suppose something has changed in the behavior in version 3. I looked up for changes, and see entries on Internet about CTRL-C and CTRL-V, but they do not seem applicable to my use case. 

Thanks in advance

Print this item