| Welcome, Guest |
You have to register before you can post on our site.
|
| Forum Statistics |
» Members: 4,930
» Latest member: Jamesda05
» Forum threads: 7,693
» Forum posts: 41,840
Full Statistics
|
| Latest Threads |
Colorized Layer Reverts t...
Forum: General questions
Last Post: sallyanne
8 hours ago
» Replies: 6
» Views: 381
|
Gimp 3.0.6-1 G'Mic-Qt ups...
Forum: General questions
Last Post: denzjos
Yesterday, 07:08 PM
» Replies: 2
» Views: 134
|
Issue with cut selection
Forum: Installation and usage
Last Post: kmll
Yesterday, 11:56 AM
» Replies: 2
» Views: 136
|
How to get G'MIC within G...
Forum: General questions
Last Post: teapot
11-10-2025, 08:04 PM
» Replies: 2
» Views: 264
|
Gimp 3.x scanner xsane pl...
Forum: Gimp 2.99 & Gimp 3.0
Last Post: Ofnuts
11-10-2025, 08:36 AM
» Replies: 14
» Views: 11,594
|
Gimp 3.0 get Metadata wit...
Forum: Scripting questions
Last Post: Volker
11-09-2025, 06:19 PM
» Replies: 3
» Views: 289
|
Text Editor hardly ever w...
Forum: General questions
Last Post: Snacko
11-09-2025, 05:13 PM
» Replies: 4
» Views: 377
|
How to make image and mas...
Forum: Installation and usage
Last Post: Ofnuts
11-08-2025, 08:39 PM
» Replies: 5
» Views: 340
|
Multi window mode mode fa...
Forum: General questions
Last Post: teapot
11-07-2025, 01:40 PM
» Replies: 5
» Views: 484
|
Animation with only GIMP ...
Forum: Gallery
Last Post: Scut-51
11-06-2025, 11:49 AM
» Replies: 25
» Views: 23,129
|
|
|
| reverse engineering effects |
|
Posted by: gimpalongcassidy - 10-07-2025, 03:35 PM - Forum: General questions
- Replies (2)
|
 |
I recently made a design with GIMP. I added a standard bevel effect to text and then ripple effect. I am trying to recreate the same effect but the ripple effect does not seem right. Is there any way to open the file and see the exact settings used for the ripple (amplitude, period, angle, phase shift, etc.)?? I may have applied a ripple effect on top of a ripple effect but don’t know. Just trying to access the filter settings used. Any help would be greatly appreciated. Thanks.
|
|
|
| Highlight display issue )Hover) |
|
Posted by: Dunham - 10-06-2025, 08:28 PM - Forum: General questions
- Replies (2)
|
 |
Hello!
Yesterday I received a GIMP update to version 3.0.6, but the highlights (hover) are very bad because they clash with the text color. I've already checked the preferences but haven't been able to fix it. Does anyone know how to fix this?
|
|
|
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.
|
|
|
| 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
|
|
|
| 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.
|
|
|
| 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?
|
|
|
|