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

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 4,784
» Latest member: T1-Survivor
» Forum threads: 7,596
» Forum posts: 41,400

Full Statistics

Latest Threads
files missing after insta...
Forum: Older Gimp versions (2.8, 2.6....)
Last Post: rich2005
5 hours ago
» Replies: 1
» Views: 84
Is there any version wher...
Forum: Older Gimp versions (2.8, 2.6....)
Last Post: rich2005
Today, 07:48 AM
» Replies: 1
» Views: 278
How do I uninstall GIMP 3...
Forum: Linux and other Unixen
Last Post: Ofnuts
Today, 07:02 AM
» Replies: 1
» Views: 158
AI Gimp Plugins
Forum: Watercooler
Last Post: merlilderman
Yesterday, 04:16 PM
» Replies: 21
» Views: 68,462
How to make a watermark o...
Forum: General questions
Last Post: kyolim
09-13-2025, 10:05 PM
» Replies: 5
» Views: 14,270
Linux command that does e...
Forum: Other graphics software
Last Post: rich2005
09-13-2025, 06:06 PM
» Replies: 1
» Views: 539
reliable Gimp 2.10.38 dow...
Forum: Older Gimp versions (2.8, 2.6....)
Last Post: denzjos
09-13-2025, 05:20 PM
» Replies: 2
» Views: 436
Batch Color Saturation
Forum: Extending the GIMP
Last Post: rich2005
09-13-2025, 07:53 AM
» Replies: 15
» Views: 12,124
Photo play-time
Forum: Gallery
Last Post: Ofnuts
09-13-2025, 07:32 AM
» Replies: 24
» Views: 21,962
BIMP plugin for GIMP 3.10
Forum: Extending the GIMP
Last Post: firefly
09-12-2025, 11:53 PM
» Replies: 2
» Views: 789

 
  3.0.4 Crashes when drag and drop an image
Posted by: kayalif - 07-10-2025, 11:26 AM - Forum: Gimp 2.99 & Gimp 3.0 - Replies (9)

Greetings everyone! 
Dragging and dropping images to GIMP cause crash. Similar topics have been opened before, but I don't know what the latest situation is.

   

Print this item

  technology against mosquitoes
Posted by: denzjos - 07-10-2025, 06:17 AM - Forum: Watercooler - Replies (2)

https://newatlas.com/around-the-home/pho...osquitoes/

Print this item

  script does not appears in Gimp3 filters
Posted by: Zydelum - 07-10-2025, 01:01 AM - Forum: Extending the GIMP - Replies (2)

Hi,

On macOS, this minimalist Python script for Gimp3 doesn't appear in Gimp3 Filters

I placed this script in Plugins and then made it executable.

Why?

Code:
#!/usr/bin/env python3
# -*- coding: utf-8 -*-

import gi
gi.require_version('Gimp', '3.0')
from gi.repository import Gimp
from gi.repository import GLib
import sys

def N_(message): return message
def _(message): return GLib.dgettext(None, message)

class MinimalTest (Gimp.PlugIn):
   def do_query_procedures(self):
       return [ "plug-in-minimal-test" ]

   def do_create_procedure(self, name):
       procedure = Gimp.ImageProcedure.new(self, name,
                                           Gimp.PDBProcType.PLUGIN,
                                           self.run, None)
       procedure.set_image_types("*")
       procedure.set_menu_label(_("Minimal Python 3 Test"))
       procedure.add_menu_path('<Image>/Filters/Development/My Minimal Tests/')
       procedure.set_documentation(_("A very minimal test for Python 3 plugins."),
                                   _("A very minimal test for Python 3 plugins."),
                                   name)
       procedure.set_attribution("Your Name", "Your Name", "2025")
       return procedure

   def run(self, procedure, run_mode, image, drawables, config, run_data):
       Gimp.message("Minimal Python 3 Test Loaded Successfully!")
       return procedure.new_return_values(Gimp.PDBStatusType.SUCCESS, GLib.Error())

Gimp.main(MinimalTest.get_type(), sys.argv)

Print this item

Photo GEGL Plugins for GIMP 3.0.4 and GIMP 2.10.38
Posted by: BeaverGEGLFreak - 07-09-2025, 10:55 PM - Forum: Extending the GIMP - Replies (5)

Download GEGL plugins here
https://github.com/LinuxBeaver/LinuxBeaver/releases/


Hello, Its me LinuxBeaver the GEGL plugin guy who is obsessed with everything GEGL. I am here to share my GEGL plugins, as these pic show I make GEGL plugins for GIMP that do text styling and background design as well as more special effects all non-destructive and re-editable of course on GIMP 3. These plugins are recommended to be used on GIMP 3.0.4 but also work on 2.10


[Image: 463579721-00f9f7e3-31f3-419d-a033-15b99a...UxAvMOBvXA]

 background design

[Image: 431530020-827667d9-f62a-4ecb-b795-8a5327...lYxmevJjnc]




There is around 125 natural GEGL plugins total and they can all be downloaded here

https://github.com/LinuxBeaver/LinuxBeaver/releases/


Users have the option to choose between source code, windows and linux binaries as well as a choice between the top 50 plugins or all 125 plugins.

Also users may visit an individual plugin download page like

https://github.com/LinuxBeaver/GEGL-GIMP.../releases/

and download a plugin individually.


GEGL Plugins DO NOT go in the normal GIMP plugins folder instead they go in places like this

Windows

Code:
C:\Users\(USERNAME)\AppData\Local\gegl-0.4\plug-ins

 
Linux


Code:
 ~/.local/share/gegl-0.4/plug-ins



Linux (Flatpak includes Chromebook)

Code:
~/.var/app/org.gimp.GIMP/data/gegl-0.4/plug-ins


then restart GIMP and go to "GEGL operation" to find the new plugins if on GIMP 2.10 or if on GIMP 3 look in the menu under filters>render>text styling, filters>text styling and other places.


Also if you didn't notice there are also about 50 more AI generated GEGL plugins on a seperate download page but I really don't like to endorse them. They were made by a machine machine not me, and they are separate from the normal download. You can still check them out of you want they go in the same folder.

Print this item

  GIMP - 3.0.4 - perspective transformation
Posted by: MichalStanczyk - 07-09-2025, 12:02 PM - Forum: Gimp 2.99 & Gimp 3.0 - Replies (1)

Hi everyone

I installed the new version 3.0.4 and immediately encountered a problem with perspective transformation. It leaves black areas that should be transparent, leaving the background layer visible.

Could anyone point me to a solution? This wasn't an issue in the old version, so I hope it's just a matter of changing the settings.

Thank you for your help.


Print this item

  Switching off a drop-list of files
Posted by: rafael_abelyar - 07-08-2025, 09:56 PM - Forum: General questions - Replies (10)

How I can prevent appearing drop-list of files when saving or exporting? That annoys much.

Print this item

  Gimp 3 - hand shaped cursor and incomplete translations
Posted by: Thomasson - 07-08-2025, 05:15 AM - Forum: Gimp 2.99 & Gimp 3.0 - Replies (2)

I have installed tha latest version of Gimp and noticed 2 irritating issues.
1. The mouse cursor changes from arrow into hand in dialog boxes, e.g. when I want to change the color temperature. I have searched in Google and found a sucesful solution https://www.reddit.com/r/GIMP/comments/1...nd_cursor/
I have moved the original grab.cur and grabbing.cur int a new folder, copied Windows'
aero_arrow.cur into the Gimp folder, renamed it into grab.cur,  pasted aero once again and renamed it into grabbing cur. When I restarted Gimp the irritating hand disappered :Smile
2. Tne new version of Gimp is not fully trnaslated into Polish. So I set the app language int English.



Attached Files Thumbnail(s)
   
Print this item

  Layer Mode List in Gimp3
Posted by: daiappy - 07-07-2025, 10:30 PM - Forum: General questions - Replies (3)

Hello. I'm on Win11. As a long time user of Gimp I'm trying to get my head round Gimp 3. Here are a few Q's and suggestions.
1) In the Layer Mode dropdown list is there a way to: a) reduce the space between each Mode so that all the Modes are visible to choose from? & b) if I choose a Layer Mode from near the bottom of the list, is there a way to return quickly to the top of the list without the need to use the mouse wheel which goes so slowly? If I could see all the Modes I could just click on the top one. This is especially tedious when using Curves.
2) when I do an action/adjustment on a layer, (Curves/Crop etc) I need to keep constantly clicking the Image Window to reactivate it. It wasn't as necessary in Gimp 2.
3) I do like the new 'Save Settings' in the Add Border Filter. Perhaps in the future we will be able to save more than one Add Border setting?
But I do like the NDL's. Thanks to all the devs who have worked towards Gimp 3.
Charles.

Print this item

Question Gimp.ParamSpec.int() default value triggers “invalid or out of range” warning
Posted by: owierda - 07-07-2025, 10:45 AM - Forum: Extending the GIMP - Replies (2)

Hi folks — I'm working on a plugin for GIMP 3.0 and running into a strange behavior with Gimp.ParamSpec.int.

When I define a property like seed with:

python
proc.add_argument(
    Gimp.ParamSpec.int(
        "seed",
        "Seed",
        "Seed value",
        0,       # min
        9999,    # max
        9999,    # default
        Gimp.ParamFlags.READWRITE
    )
)


I get this warning at plugin registration:


Warning: value "9999" of type 'gint' is invalid or out of range for property 'seed' of type 'gint'

min <= max => default 

The default is clearly within the defined min/max bounds, and all three values (min, max, default) are legitimate. Strangely, the only setup that suppresses this warning is when all three values are **exactly the same** (we call it the triple x same bug), like:

python

0, 0, 0

or


1024, 1024, 1024

Even common combinations like:

python

0, 9999, 0


512, 2048, 1024

or:
python
0, 9999, 5000


cause the warning to appear and as a result, the plug-in is not registered. I’ve searched around but haven’t found an explanation. Is this a known quirk in GIMP’s plugin API? Are there hidden constraints on gint properties that aren’t documented?

Any ideas or workarounds would be appreciated!

Thanks ?

Olaf

Print this item

  Can tooltip display time be increased?
Posted by: cjsmall - 07-05-2025, 08:06 PM - Forum: Gimp 2.99 & Gimp 3.0 - Replies (3)

In GIMP 3.0.4 I'm finding the tooltips popping up are very annoying.  I searched Preferences and did not see an option to adjust or disable them.  Is there a way to increase the timeout before the tooltip is displayed, or to disable them altogether?

Thanks.


Also, I'm using the Default Light Colors theme and Legacy Icon theme. Can I change the colors of the tooltips to be white text on a dark grey background as was the case in 2.10?

Print this item