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

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 4,782
» Latest member: MichaelDak
» Forum threads: 7,594
» Forum posts: 41,394

Full Statistics

Latest Threads
Is there any version wher...
Forum: Older Gimp versions (2.8, 2.6....)
Last Post: HavingTooMuchFun
Yesterday, 01:57 PM
» Replies: 0
» Views: 143
How to make a watermark o...
Forum: General questions
Last Post: kyolim
09-13-2025, 10:05 PM
» Replies: 5
» Views: 14,112
Linux command that does e...
Forum: Other graphics software
Last Post: rich2005
09-13-2025, 06:06 PM
» Replies: 1
» Views: 431
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: 349
Batch Color Saturation
Forum: Extending the GIMP
Last Post: rich2005
09-13-2025, 07:53 AM
» Replies: 15
» Views: 12,006
Photo play-time
Forum: Gallery
Last Post: Ofnuts
09-13-2025, 07:32 AM
» Replies: 24
» Views: 21,848
BIMP plugin for GIMP 3.10
Forum: Extending the GIMP
Last Post: firefly
09-12-2025, 11:53 PM
» Replies: 2
» Views: 697
pl_stroke_arrows GIMP 3.0...
Forum: Extending the GIMP
Last Post: Scallact
09-12-2025, 04:03 PM
» Replies: 0
» Views: 350
How do you make text circ...
Forum: General questions
Last Post: rich2005
09-12-2025, 07:18 AM
» Replies: 12
» Views: 3,445
New Install, Black Screen...
Forum: OSX
Last Post: akhrameev
09-11-2025, 02:32 PM
» Replies: 3
» Views: 3,118

 
Question Layer color to specific layer
Posted by: kikateadrunker - 04-09-2024, 02:54 AM - Forum: General questions - Replies (1)

Hi all!

I ran into a probably trivial problem: I can’t put a color layer (overlapping) on a certain layer, and instead, the color layer covers everything.

Can anyone tell me how to fix this?



Attached Files Thumbnail(s)
       
Print this item

  Gimp reverting document size to Letter or A4
Posted by: Gargoylz - 04-08-2024, 04:08 PM - Forum: General questions - Replies (2)

Hello all. I have Google'd this issue and have seen numerous posts in various forums with no real resolution. I am using Gimp v2.10.30 on a Windows 11 PC. The problem I am having and cannot seem to resolve is that upon printing, Gimp is reverting larger format documents to letter size. Here are the steps I am taking in the current example I am dealing with.

1. Create a new document that is 24" x 36" to be printed to an Epson SC-F570, large format sublimation printer.
   
2. Add all images to blank document.
3. In "Page Setup", change "Size" to "User-Defined" and "Source" to "Roll Paper" (as needed for printer in question).
   
4. Click "Print", bringing up the Gimp print dialogue.
5. Click "More settings" to launch the printer specific settings dialogue.
6. Change "Document Size" to "User-Defined" and "Output Size" to 24" x 36".
   
7. Click "OK" on printer specific dialogue.
8. Click "Print" on Gimp print dialogue, which brings up the printer specific print preview.
9. Document size reverted to 8.5" x 11"
   

I have done this over and over again. Regardless of how many ways I confirm the intended document and print size to be 24" x 36", once I get to the last step where I would hit "Print" for the final time to actually start printing, the document size is changed back to 8.5" x 11". This does not happen with other graphics software using the same process, computer and printer. This ONLY happens using Gimp. Has anyone experienced this and actually resolved it? Pulling what's left of my hair out trying to get Gimp to print larger formats properly. Thank you so much for any input.

Print this item

  Script syntax for IMAGE or DRAWABLE
Posted by: slaine - 04-08-2024, 12:12 PM - Forum: Scripting questions - Replies (2)

Hello!

I've searched for hours for an answer on the net and I haven't found anything, although I'm sure my question is very simple, as I'm a beginner with script-fu. I've been working on GIMP for years, but I've never used the console.

Here's my question: on the console, I want to use the procedure:

gimp-drawable-hue-saturation

which I've chosen from the list. When I activate this procedure, I have to fill in the necessary data for

(gimp-drawable-hue-saturation drawable hue-range hue-offset lightness saturation overlap)

So I've entered my chosen values:
(gimp-drawable-hue-saturation drawable 0 0 0 -100 0)

But what do I do with DRAWABLE????

My layer is named "Calque", so I've tried the "Calque" syntax, and other possibilities, but I keep getting an error message, see the attached screenshot.

Thank you SO MUCH for your help!
Sylvie



Attached Files Thumbnail(s)
   
Print this item

  Accessing last applied Auto Levels from a script
Posted by: BigMackCam - 04-08-2024, 09:07 AM - Forum: Extending the GIMP - Replies (4)

Hi all

I'm new to writing GIMP scripts, and relatively new to python, but slowly I'm beginning to make progress with python-fu and simple script development.

I have a process I'm currently performing manually on a regular basis, and I'd like to create a script to automate it. The manual process is as follows:

1. Select an area of the image
2. Perform Auto Levels (Colors -> Levels -> Auto Input Levels)
3. Undo Levels
4. Select all of the image
5. Re-apply the previous levels (Filters -> Repeat Levels)

In scripting the above, I've got as far as step 4 successfully - but for step 5 I'm stuck, as I can't find any procedure in the pdb that lets me re-apply the previous levels. After a bit of searching online, I found that GIMP writes these values to a GimpLevelsConfig.settings file in the AppData\Roaming\GIMP\2.10\Filters directory (on my installation, at least) - and if I look in this file, I can indeed see the levels last applied... but I can't find any procedure that will let me retrieve the values.

So... my questions to the esteemed and knowledgeable python scripters here are:

1. Is there a way to call the Filters -> Repeat Levels function via an existing internal GIMP procedure?
2. If "no" to the above, is there a way to access the levels values last applied without resorting to the "GimpLevelsConfig.settings" file?
3. If "no" to the above, is there a way of reading the file via one or more existing internal GIMP procedures?
4. If "no" to the above, (a) how do I obtain the directory for the file (in case it's configured differently across versions and platforms), and (b) can anyone help me with guidance on reading and parsing the file to a set of variables?

Any assistance for this rank novice would be greatly appreciated. Thanks in advance!

Mike

PS. Sorry, I forgot to mention, I'm running GIMP 2.10 on Windows, Ubuntu and Fedora environments...

Print this item

  Displaying Emojis in Gimp Textbox using Segoe UI Emoji Font
Posted by: Beuzbugz - 04-05-2024, 09:18 PM - Forum: General questions - Replies (24)

Hi everyone,
I'm new to this forum.


I'm encountering an issue with GIMP 2.10.36 (revision 1) on Windows 10.


I would like to display emojis from the Segoe UI Emoji font in a textbox, similar to the example shown below (apologies for the French language!):

   

But when I copy and paste the same string into a GIMP textbox, the emojis are displayed as black outlined emojis, like the example below:

   

Do you have any ideas on how I can resolve this issue and make the emojis display correctly as intended?

Thanks in advance for your help!

Print this item

  [WINDOWS] Resynthesizer not showing up under filters
Posted by: dainer - 04-05-2024, 10:42 AM - Forum: Extending the GIMP - Replies (2)

Hello Smile

like the title states the healing filter is not showing up in GIMP.

I use this folder
C:\Users\*\AppData\Roaming\GIMP\2.10\plug-ins

and the resynth-partha files for 64bit Windows versions from this forum, but I also tried the Github RAW files before.
https://www.gimp-forum.net/Thread-Resynt...7#pid12687

I watched basically the same video by different uploaders on youtube for over 20 times and it just doesn't make sense to me.
I followed the procedures exactly but only

Filters>Maps>Resynthesizer shows up, not
Filters>Enhance>healing

------

GIMP Version 2.10.36 (revision 1)
Windows 10 22H2
Python 3.12.2

Any help would be greatly appreciated Big Grin

Print this item

  Fantastic or not, that's the question...
Posted by: denzjos - 04-05-2024, 06:58 AM - Forum: Watercooler - No Replies

Editing DALL-E Images in ChatGPT

https://www.youtube.com/watch?v=kJirMpbvBrM

Print this item

  Selective color PS to GIMP
Posted by: Krikor - 04-05-2024, 12:43 AM - Forum: General questions - Replies (5)

Hello, I would like to know if there is something in Gimp that comes close to what is seen in the shoot screens below (taken from a PS tutorial video)

       


In the video tutorial this step is called "Add selective color adjustment".
What I could understand is that:
First the red color was selected and then the Magenta color slider slid to the right (increasing the green, I think);
Then the color yellow was selected, and the same slider was adjusted slightly to the right again.

I looked in the Gimp menus and even in G'MIC but I didn't find anything like it - something that fixes a color and adjusts the colors in the CMYK standard.

How could I do this tutorial step using Gimp?

Thx.

Print this item

  working on new gimp formula
Posted by: jigsawpuzzle666 - 04-05-2024, 12:41 AM - Forum: Gallery - Replies (1)

Got a broken picture to show, its a bit misaligned but its got alot of potential, I just need a bit of time to stuff it up a bit longer then I'll have all these powerful images to show.
As a thumbnail its really good at tricking you a really awesome picture is there,  and I know what to do to fix it up.


   


And heres another one I did of Humpty Dumpty. (the aftermath.)

   


So they are missing a bit of definition, but the cool thing is I can do them pretty quickly,  so I'm looking extend the idea into some fairly long books where unless u can do 'em fast theres no point, then maybe ill be getting closer to the niche for it.  Even tho ai art has pretty much shooken things a fair bit, so its just for fun in the aftermath of mans furious invention.

Print this item

Question Thicken and Outline Font
Posted by: lamponr - 04-04-2024, 03:42 PM - Forum: General questions - Replies (1)

Ok Folks - I landed in this forum searching on how to thicken a font.

I got that done... but I also need to Outline the font.

There in lies my problem.

I've thickened the fonts (grow X px)... but when I go to outline that grown font in a different color - its not working (it reverts back to thin font).

Any help would be greatly appreciated.

Print this item