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

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 4,586
» Latest member: Bookman
» Forum threads: 7,459
» Forum posts: 40,756

Full Statistics

Latest Threads
Bug: gimp-drawable-get-pi...
Forum: Scripting questions
Last Post: Ofnuts
45 minutes ago
» Replies: 7
» Views: 156
'Transparent' area is bro...
Forum: General questions
Last Post: Black Jack Davy
3 hours ago
» Replies: 0
» Views: 6
blank screen
Forum: OSX
Last Post: wilsonpig
6 hours ago
» Replies: 4
» Views: 146
GIMP 3.04 opens with wind...
Forum: Windows
Last Post: rich2005
7 hours ago
» Replies: 4
» Views: 197
Cannot Install BIMP to GI...
Forum: Extending the GIMP
Last Post: Ofnuts
Yesterday, 07:52 PM
» Replies: 1
» Views: 68
Missing fonts when export...
Forum: Gimp 2.99 & Gimp 3.0
Last Post: chblondel
Yesterday, 06:11 PM
» Replies: 9
» Views: 511
Gimp 3.0.4 - Windows 10 -...
Forum: Gimp 2.99 & Gimp 3.0
Last Post: rich2005
Yesterday, 03:02 PM
» Replies: 1
» Views: 115
Macroglossum stellatarum
Forum: Watercooler
Last Post: denzjos
Yesterday, 09:47 AM
» Replies: 2
» Views: 135
Missing script-fu "refres...
Forum: Gimp 2.99 & Gimp 3.0
Last Post: Frenchie
Yesterday, 08:38 AM
» Replies: 11
» Views: 397
processes in Whitelist
Forum: OSX
Last Post: rich2005
07-02-2025, 09:45 AM
» Replies: 5
» Views: 237

 
  Enter path in dialogs
Posted by: kiwichick - 04-12-2022, 11:13 PM - Forum: General questions - Replies (10)

Sorry if this has been asked before but I couldn't find anything using Search. Can someone please explain to me why it's not possible to enter (manually or copy and paste) a path in any of the dialogs for Open, Save, Export? It is so not user-friendly and I can't for the life of me imagine why it would be designed this way. And can someone please also tell me what the "Search" is for in these dialogs?

Print this item

Sad Printing portal changed
Posted by: samanthahope85@yahoo.com - 04-12-2022, 05:03 PM - Forum: General questions - No Replies

Hi there. 

Recently my print portal changed and I can No longer modify paper type or print quality when using my Mac and Epson ET2027 printer. I’ve tan all the updates for GIMP, my OS, and the printer itself. I need to be able to edit the qualities

Print this item

  How to set same exposure from one to image to another?
Posted by: spider-x - 04-12-2022, 09:30 AM - Forum: General questions - Replies (1)

How can i take one jpg picture a apply its exposure/shutter speed to another image? I'm trying set the same exposure with gegl library under linux and in gimp. I want apply exposure from one image to multiple images. Any help appreciated.

Print this item

  Script window too long for screen height
Posted by: kiwichick - 04-12-2022, 12:21 AM - Forum: General questions - Replies (7)

I've installed a script whose window is longer than my screen height. It's only a test script so it's not an important one but, for future reference, is there anything I can do about it? eg: edit the script to have scrollbars appear.

   

Print this item

Wink GIMP on Android
Posted by: userlandtech - 04-09-2022, 09:50 PM - Forum: General questions - Replies (7)

All- I have seen this question on a few posts across the internet, so I wanted to just post our project that we just put up on the google play store.  We were able to put the GIMP that we all know and love onto Android.  You will find that it truly is the application that you are familiar with and we were able to optimize the touch interface experience.  Would love if the group here gives it a try.  You can find the link below.  This is a paid version, but you can access a free version (with a little more work) through our UserLAnd app.  Our GIMP app is a very smooth experience though and would recommend it.  Thanks!

Edit: I will replace the google store with the link to the 'free' source
https://userland.tech/
Any one interested in paying $1-99 , which is not a great amount , can use the link there to the Google store.

Print this item

  Drawing a simple rectangle layer?
Posted by: oguruma - 04-09-2022, 08:46 PM - Forum: General questions - Replies (6)

I'm learning the basics of using GIMP. I'm making a simple "color palette" for a design project.

I want to draw several rectangles, each as their own layer, and have that entire layer be the size of the rectangle. 

When I click "New Layer" and draw the selection, I can color the selection, but the layer still has the size of the background layer (instead of the small rectangle, like I want).

I can manually resize the layer, but I'd assume there's a better way size the entire layer to the rectangle I want.

How do you do this?

Print this item

  An "Alpha" layer blending mode - need help with building
Posted by: Ismir Egal - 04-09-2022, 05:57 PM - Forum: Extending the GIMP - Replies (7)

Hello guys,

Similar to "HSV Hue", "HSV Saturation" and "HSV Value" i want to implement an "Alpha" layer blending mode which replaces the target alpha channel with the one of the input layer.
I'm not big into programming so luckily i can just use one of the aforementioned ones as a base.
The color space transformations aren't required and we don't need to do any math so the code should just be:

operations/layer-modes/gimpoperationlayermode-blend.c (line 538):

Code:
void
gimp_operation_layer_mode_blend_alpha (const gfloat *in,
                                      const gfloat *layer,
                                      gfloat       *comp,
                                      gint          samples)
{
 while (samples--)
   {
     comp[RED]   = layer[RED];
     comp[GREEN] = layer[GREEN]
     comp[BLUE]  = layer[BLUE];
     comp[ALPHA] = in[ALPHA];

     comp  += 4;
     layer += 4;
     in    += 4;
   }
}
operations/layer-modes/gimpoperationlayermode-blend.h (line 85)
Code:
void gimp_operation_layer_mode_blend_hsv_value         (const gfloat *in,
                                                       const gfloat *layer,
                                                       gfloat       *comp,
                                                       gint          samples);

operations/layer-modes/gimp-layer-modes(line 584)
Code:
 { GIMP_LAYER_MODE_ALPHA,

   .op_name              = "gimp:layer-mode",
   .blend_function       = gimp_operation_layer_mode_blend_alpha,
   .flags                = GIMP_LAYER_MODE_FLAG_BLEND_SPACE_IMMUTABLE,
   .context              = GIMP_LAYER_MODE_CONTEXT_ALL,
   .paint_composite_mode = GIMP_LAYER_COMPOSITE_UNION,
   .composite_mode       = GIMP_LAYER_COMPOSITE_CLIP_TO_BACKDROP,
   .composite_space      = GIMP_LAYER_COLOR_SPACE_RGB_LINEAR,
   .blend_space          = GIMP_LAYER_COLOR_SPACE_RGB_PERCEPTUAL
 },


However, i can't get Gimp to build. Not that it fails; it's that the problem sits in front of the desk.
The tools don't link up and the libraries don't seem to work. I've already spent way more time into setting this up then coming up with the code seen above.
Personally i don't think it's worth putting more time into trying to make the building work so
Could somebody implement these changes and upload a Windows build? (if it even works that way)

Setting this up as a plug-in would obviously be the better way but i have no idea how to do this, especially since i can't just copy and modify existing functions.

Please let me know if you can help or know a better solution

Print this item

  darken text issue
Posted by: denzjos - 04-09-2022, 09:27 AM - Forum: Tutorials and tips - Replies (2)

I wanted to darken a small text to make it more readable and discovered following issue. I typed a text and duplicated the layer a few times and the text becomes darker (this is normal). To move the darkened text I merged the text layers and the result was a normal layer with darkened text that can't be edited afterwards. The trick to edit the text afterwards is to save the drawing with the duplicated layers not merged, then load the drawing again and merge the text layers. The result is a normal layer (can't be edited). Now save the drawing and load it again. The 'normal' layer with the text is now converted to a editable text layer. When one edit the text, then the text darkness becomes as the original darkness. If the text duplicated layers are not edited, they stay darker.

Print this item

  Removing shadows?
Posted by: sayluv - 04-09-2022, 03:47 AM - Forum: General questions - Replies (3)

Hi-

I've been using Gimp for years but I'm a total novice. Is the dodge/burn tool the best way to remove shadows? At first I used a mask and tried messing with the exposure. That may work but my borders were not organic enough. The dodge tool seems to be working ok but having small issues. I did the front far leg and I am working on the rear far leg. I am running across an issue when I use the tool on certain areas of the leg a dark blue/green tint appears on the area. Any help would be appreciated. Thx!!



Attached Files Thumbnail(s)
   
Print this item

  Beautify plugin ART > Life Sketch causes error in (Windows 10 / GIMP 2.10.30)
Posted by: agzol - 04-08-2022, 09:18 AM - Forum: Extending the GIMP - Replies (3)

Beautify plugin ART > Life Sketch causes error in (Windows 10 / GIMP 2.10.30) libgtk-win32-2.0-0.dll

In fact any Beautify effect fails the same way.

[url=https://gitlab.gnome.org/GNOME/gimp/-/issues/8060#environmentversions][/url]Environment/Versions

  • GIMP version: 2.10.30
  • Package: installer from gimp.org
  • Operating System: Windows 10 21H2 (19044.1586)  64 bit
Have used this plugin in the past without any issues.
Noticed the error in GIMP 2.10.28 so updated to 2.10.30 but same error.
The preview pane in Beautify appears alright, but when I OK the effect I get the error message.  

Plug-in crashed: "beautify.exe"
(C:\Users\desktop\.gimp-2.10\plug-ins\beautify.exe)

Windows event log :-
Faulting application name: beautify.exe, version: 0.0.0.0, time stamp: 0x52d2a3bf
Faulting module name: libgtk-win32-2.0-0.dll, version: 2.24.32.0, time stamp: 0x00000000
Exception code: 0xc0000005
Fault offset: 0x0000000000277d6b
Faulting process ID: 0x2bec
Faulting application start time: 0x01d84b28b69b3989
Faulting application path: C:\Users\desktop\.gimp-2.10\plug-ins\beautify.exe
Faulting module path: C:\Program Files\GIMP 2\bin\libgtk-win32-2.0-0.dll
Report ID: 858763fa-9c28-4bbe-8d4a-49da564c00c8
Faulting package full name: 
Faulting package-relative application ID: 

same issue with libgtk-win32-2.0-0.dll, version: 2.24.33.0

HELP pls  Huh

Print this item