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

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 4,933
» Latest member: StellaD09
» Forum threads: 7,694
» Forum posts: 41,846

Full Statistics

Latest Threads
Text Editor hardly ever w...
Forum: General questions
Last Post: sallyanne
5 hours ago
» Replies: 5
» Views: 406
Issue with cut selection
Forum: Installation and usage
Last Post: rich2005
6 hours ago
» Replies: 4
» Views: 202
How to get G'MIC within G...
Forum: General questions
Last Post: rich2005
6 hours ago
» Replies: 4
» Views: 337
"Mouseclick" is not recor...
Forum: General questions
Last Post: ESH
Yesterday, 11:18 PM
» Replies: 0
» Views: 74
Colorized Layer Reverts t...
Forum: General questions
Last Post: sallyanne
Yesterday, 08:57 AM
» Replies: 6
» Views: 428
Gimp 3.0.6-1 G'Mic-Qt ups...
Forum: General questions
Last Post: denzjos
11-11-2025, 07:08 PM
» Replies: 2
» Views: 171
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,652
Gimp 3.0 get Metadata wit...
Forum: Scripting questions
Last Post: Volker
11-09-2025, 06:19 PM
» Replies: 3
» Views: 306
How to make image and mas...
Forum: Installation and usage
Last Post: Ofnuts
11-08-2025, 08:39 PM
» Replies: 5
» Views: 356
Multi window mode mode fa...
Forum: General questions
Last Post: teapot
11-07-2025, 01:40 PM
» Replies: 5
» Views: 508

 
  "Mouseclick" is not recorded in Shortcuts
Posted by: ESH - Yesterday, 11:18 PM - Forum: General questions - No Replies

Gimp 3 on Win 11.

I would like to use a shortcut (living in my muscle-memory from Photoshop) 'Ctrl+left mouseclick' on the layer mask icon (giving me the selection of the mask). 
But when I try to input the combination - it is not recognized in the Configure Keyboard Shortcuts section.

At the same time I can have a mask shown with 'Alt+left mouseclick' on the layer mask icon. But this key-combination (though working) is not shown as a keyboard shortcut in the configure section ("Show Layer Masks" has the status "Disabled").

I guess 'Alt+left mouseclick' somehow was installed with the PhotoGimp plugin. I have searched for the plugin's key-definitions file to maybe be able to edit the short-cuts there. But I can't find it. And the right way would be to make these changes from the Configure Keyboard Shortcuts option. 

How can I get Gimp to accept and show the mouse actions in the configure section?

Print this item

  Gimp 3.0.6-1 G'Mic-Qt upscale problem
Posted by: denzjos - 11-11-2025, 03:40 PM - Forum: General questions - Replies (2)

Problem with G'Mic-Qt / Repair / Upscale [CNN2x] when using gimp 3.0. 6-1

G'Mic-Qt / Repair / Upscale [CNN2x] gimp 2.10.38

   

G'Mic-Qt / Repair / Upscale [CNN2x] gimp 3.0.6-1

   

Print this item

  Issue with cut selection
Posted by: kmll - 11-11-2025, 10:26 AM - Forum: Installation and usage - Replies (4)

I am a beginner Gimp user and I have an issue cutting from a layer with filter.

1) I have two layers where the top layer has a filter

https://ibb.co/pjjbx6dF

2) I add an alpha channel to the top layer
3) I make a selection and cut
4) The result is not a hole showing the bottom layer but I get this.

https://ibb.co/mr22Fydr

What am I missing?

Print this item

Exclamation Text Editor hardly ever works!!
Posted by: Snacko - 11-08-2025, 09:53 PM - Forum: General questions - Replies (5)

I went from 2.10 to 3 this year, and have never had a good experience with the Text tool!!  I hate it!!  

When using the on-canvas text editor, I select my text and type in a new font at the top, and select it, the font does NOT change!
When selecting a font and size from the left side tool panel, with my text selected, it has no affect!
When using the big Text Editor, my text is microscopic no matter what size I set the font to..
'Use Selected font' may work, but I cannot tell, because I need a microscope to see my text.

When doing any of these actions, I always have my text selected.  This has pretty much been the same for me from v2 - v3 for the past years.

I remember years ago when it seemed to kind of work.  
Does it work this way for everyone?  Is there a fix for this??
Argg...    Angry

[Image: gimp-3-0283.jpg]

Print this item

  How to get G'MIC within GIMP?
Posted by: teapot - 11-08-2025, 07:48 PM - Forum: General questions - Replies (4)

Hi,

Using arm64 Raspbian based on Debian 13 (Trixie) how can I get G'MIC within GIMP?

I have the gmic package installed which gives me /usr/bin/gmic but that doesn't give G'MIC within GIMP.

None of Debian's G'MIC packages seem to do that,
https://packages.debian.org/search?keywo...ection=all

'apt-file find gmic-qt' doesn't find any package containing paths with that text.

https://gmic.eu/download.html seems to link to x86_64 binaries, under the amd64 name, and jumping to the full list of files doesn't show any other supported architectures: https://gmic.eu/files/linux/

Would appreciate help on what to do, do I have to compile it from source code?

Print this item

  Gimp 3.0 get Metadata with Python
Posted by: Volker - 11-08-2025, 05:41 PM - Forum: Scripting questions - Replies (3)

How do I retrieve jpg metadata from a Python plug-in in Gimp 3.0?

I open a jpg photo and need some metadata. With Gimp 2 and Python 2 I used the plug-in "gimp_image_get_metadata".
My code was (abridged): 

Code:
import xml.etree.ElementTree as ET

metadata = pdb.gimp_image_get_metadata(self.image)
dateTag  = "exif.photo.datetimeoriginal"
date = self.get_metadata_value(metadata, dateTag)

def get_metadata_value(self, metadata,
                            metadataName):
 ciName = metadataName.lower()
 value = ""
 rootNode = ET.XML(metadata)
 for tag in rootNode.findall('tag'):
   if tag.attrib['name'].lower() == ciName:
     value = tag.text
     break
 return value
The plug-in isn't there any more in Gimp 3. Instead I find the class Gimp.Metadata. This class provides some methods for restricted operations, but none for my needs. I try:
Code:
metadata = image.get_metadata()
I expect to get an xml document, but I don't know how to look for it.
Is there a different approach?

My system: Mac mini (Apple M2), macOS Tahoe (26.0.1)
My Gimp: 3.0.6
My Python: 3.10



 

Print this item

  Colorized Layer Reverts to Greyscale if I Add a Layer Above it
Posted by: TMORT - 11-08-2025, 02:08 AM - Forum: General questions - Replies (6)

I have some satellite imagery of the same area bur from different times. I want to show where development has occurred.

The satellite images are all the the same extent but come from different sources and look a lot different from one another. While the changes in developed areas is visible it gets lost in all the other differences in the images.


I thought it might be best to use edge detect with the magic wand to select the developed areas in another layer  and then turn it to just black and white, then change the colors of that area to some other color. I also thought because the satellite images were quite variable in how they looked, some were nice and full color others were more black and white and some it looks like some tiles were color and others more grayscale.

I could do that. I later thought I'd colorize the base grayscale layer to green. It sort of matches what I'm trying to show and gets lost even in the full color images when I go to grayscale. 

I find though that when I overlay the layer with just the developed areas with an alpha background that the bottom colorized layer loses it colorization. I read something about turning the alpha lock on so I did that for the base layer and also the top layer and that didn't change anything. It went from colorized back to grayscale.

Does anyone know why it is doing this and how to keep if from doing this.

For that matter, I described what I'm trying to do because I have to think this sort of thing has been done many times by others. Maybe there is another way that is easier or maybe that just works.

I have used GIMP on and off for quite a few years now, but never really for this sort of thing. I'm also using v3.06 for Linux. I think it is a flatpack build as well for what its worth.

Print this item

  How to make image and mask move together?
Posted by: ESH - 11-07-2025, 12:38 PM - Forum: Installation and usage - Replies (5)

I am a novice to Gimp 3.0.6. I used Photoshop for decades untill Adobe's policies made me leave.

My pc runs Win 11 with an AMD 64 processor.

In Photoshop a layer with a mask shows a locking-icon. "Locked" will lock the relative movements between image and mask - and "unlocked" will allowe them to be moved separately.

This has nothing to do with Gimp's options to protect the content of the layer against editing or movement (as far as can see).

One of my layers in Gimp shows an image icon and its mask icon - and apparently there's no option to lock their relative movement?

Example: 
With the Move tool active and the image at eg. 400% trying to move the image and the mask together within the borders of the screen results in two unexpected behaviors:
1. with the mask icon active a selection of the mask becomes visible and moves independently of the image.
2. with the image icon active the image moves relative to the mask.

How can I make them move together - like in PS when the small locking-icon shows "locked"?

Print this item

  Multi window mode mode faults in 3.0.4
Posted by: teapot - 11-06-2025, 12:53 AM - Forum: General questions - Replies (5)

Hi, Using gimp 3.0.4 and Debian.

Is anyone else having problems when two images are open in multi window mode?

It's causing extra behaviour when doing for example:
    Image -> Guides -> New Guide (by percent)
    Image -> Guides -> Remove all Guides
    File -> Export As

one or more of these occur as well:
    Lock a path
    Lock and unlock layers
    Make a layer visible

I cannot spot a pattern that triggers it apart from it's worse the more that's in the image e.g.  having paths and/or layer masks present.

It's fine in single window mode.
It's fine in both single window mode and multi window mode when only one image is open.
I have not tried it in other versions of gimp 3 as I only have 3.0.4 available.

   

Print this item

  Tutoriel installer Dream prompter dans Gimp
Posted by: meric57 - 11-03-2025, 07:45 AM - Forum: Tutorials and tips - No Replies

https://www.gimp-forum.net/misc.php?action=help&hid=9

With respect: See the above for the forum rules. In particular
This is an English speaking forum. Post in English. Every effort is made to assist users where English is not first language.

Thank you.

Print this item