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

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 4,930
» Latest member: Jamesda05
» Forum threads: 7,693
» Forum posts: 41,839

Full Statistics

Latest Threads
Gimp 3.0.6-1 G'Mic-Qt ups...
Forum: General questions
Last Post: denzjos
10 hours ago
» Replies: 2
» Views: 108
Issue with cut selection
Forum: Installation and usage
Last Post: kmll
Yesterday, 11:56 AM
» Replies: 2
» Views: 105
Colorized Layer Reverts t...
Forum: General questions
Last Post: Ofnuts
11-10-2025, 09:27 PM
» Replies: 5
» Views: 357
How to get G'MIC within G...
Forum: General questions
Last Post: teapot
11-10-2025, 08:04 PM
» Replies: 2
» Views: 240
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,572
Gimp 3.0 get Metadata wit...
Forum: Scripting questions
Last Post: Volker
11-09-2025, 06:19 PM
» Replies: 3
» Views: 275
Text Editor hardly ever w...
Forum: General questions
Last Post: Snacko
11-09-2025, 05:13 PM
» Replies: 4
» Views: 368
How to make image and mas...
Forum: Installation and usage
Last Post: Ofnuts
11-08-2025, 08:39 PM
» Replies: 5
» Views: 336
Multi window mode mode fa...
Forum: General questions
Last Post: teapot
11-07-2025, 01:40 PM
» Replies: 5
» Views: 473
Animation with only GIMP ...
Forum: Gallery
Last Post: Scut-51
11-06-2025, 11:49 AM
» Replies: 25
» Views: 23,090

 
  fading text layer
Posted by: mwas - 07-31-2023, 09:39 AM - Forum: Extending the GIMP - Replies (3)

Hi, I am new to this forum so if I my question is in the wrong section, well, sorry I guess!

I have a pdf form to fill like 500 times and I thought using a gimp python plugin is the way to do it. I have developed the said plugin and I can successfully fill the form except that the text layers I am adding are too sharp. Before I save the file manually, I usually use the blur tool to make the text look like it was filled with a pen. I have tried to do this in the plugin but I can't get i right. I am using the gimp.convolve() function. I guess my problem is obtaining the stroke points of the text layer. Can somebody please help me. Thanks.

Print this item

  Windows XnViewMP as a file browser
Posted by: rich2005 - 07-30-2023, 04:40 PM - Forum: Other graphics software - Replies (1)

A sometimes problem. A Windows user annoyed that Windows Explorer only shows Gimp .xcf files with the default Gimp icon.

Does anyone know of a fix ?  

As an alternative there is XnViewMP. Download from the xnviewmp forum: https://newsgroup.xnview.com/viewtopic.php?f=82&t=45755

You can use it to browse a folder of files and view any that interest you. Set up to edit in an external editor, that is Gimp. It can make the workflow a little smoother for Windows users.

A 4 minute video https://youtu.be/G_sRRvayw6U  



Print this item

  Help with font guys..
Posted by: dlux - 07-30-2023, 02:07 PM - Forum: General questions - Replies (2)

Hey guys! Please what are the names of thee fonts.



Attached Files Thumbnail(s)
       
Print this item

  232 strokes, 2330 anchors, 80162 pixels
Posted by: Ofnuts - 07-28-2023, 11:09 PM - Forum: Gallery - Replies (4)

   

Print this item

  Clone selection tool problem /lost
Posted by: Kev - 07-28-2023, 04:10 PM - Forum: General questions - Replies (2)

I seem to have lost the tool to select a sample from the picture. 

I think I might have accidently clicked on the wrong thing or touched a key on the keyboard.

I'm a real novice with PC's and IT so don't know much.

Before when it was working I would click on the area i wanted to select from then press the trl key on my keyboard and a circle would appear which could then use as my source for cloning and healing. Now i get  four corners and a cross in the middle and the cross stays where click but doesn't work .  


windows 10 pro version 22h2

Gimp 2.10.34



Attached Files Thumbnail(s)
   
Print this item

  prevent/control the "gimp not responding" window
Posted by: jacques_duflos - 07-28-2023, 02:01 AM - Forum: Scripting questions - Replies (2)

Hi,
I'm working on a script that takes some time to execute because it sends a list of online requests. It can last up to few minutes. During the process, the window "gimp is not responding" with the options "force to quit" and "wait" appear. Is there a way to prevent it ?

Print this item

Scheme Algorithm for indexed image mode
Posted by: lesolorzanov - 07-27-2023, 11:54 AM - Forum: General questions - Replies (3)

I've always been marveled at GIMP and very happy that it's so accessible.

I was wondering if I can ask, I'd like to know how indexing works and creation of a palette, it happens so quickly that I was wondering if anyone could tell me (even if roughly) how this indexing works. Or even point me to a an article or the name of the creator of this particular algorithm.

I attach an image of what I am talking about.

   

Print this item

  Merging colors... How do it with Gimp?
Posted by: Krikor - 07-27-2023, 10:00 AM - Forum: General questions - Replies (9)

Hi,

We obtain the secondary colors by superimposing the primary colors, such that:
Red + Yellow = Orange
Blue + Red = Purple
Yellow + Blue = Green

Is there any way to produce this with The Gimp?

   

I laid each color in a layer and tried to get the secondary colors, I tried the layers modes and the composite mode, but without getting the expected results.

Thx!

Print this item

  several register by python file ?
Posted by: jacques_duflos - 07-25-2023, 07:07 PM - Forum: Scripting questions - Replies (3)

I am doing a script that I want to execute very quickly with a shortcut, or more slowly with a option window. Something similar to "save" (quickly executed with ctrl+s) and "save as ..." (with a window to precise options). How should I do ?

  1. Should I do two completely separated plug-ins ?
  2. Or one plug-in with two python files in it (one importing the other I guess) ?
  3. Or can I put several register function in one python script ?
  4. other ?
I would say the third option is the best, but as I can't remember having seen such thing anywhere, I wonder if there are habits or rules about that.
The code would look like that :

Code:
from gimpfu import *

def slow_function(image, layer, other, options):
    #some code

def quick_function(image, layer):
    slow_function(image, layer, defaults, values)

register(
    "python-fu-quick-function",
    "description",
    "description",
    "Your Name",
    "Your Name",
    "2023",
    "<Image>/Filters/quick function",
    "*",
    [],
    [],
   quick_function)

register(
    "python-fu-slow-function",
    "description",
    "description",
    "Your Name",
    "Your Name",
    "2023",
    "<Image>/Filters/slow function ...",
    "*",
    [
        (PF_IMAGE,  'image',            'Image', None),
        (PF_OPTION, 'some option')],
        (PF_OPTION, 'some other option')]
    [],
    slow_function)

main()

Print this item

  Resizing Images
Posted by: Azean - 07-25-2023, 03:55 PM - Forum: General questions - Replies (2)

Hello, 

I've messed around with Gimp for a few years when I need to do something but today I'm having a lot of problems using the scale tool. I have a base layer with an image, I paste in a second image that I put on its own layer that I can manipulate with the unified transform tool and rotate tools just fine but the image is too large and I wanted to scale it down with the scale tool but I am unable to just select the image I want and instead it selects the whole canvas. What am I doing wrong? I don't ever recall having this issue before so I guess I'm doing something wrong.

Cheers
Az



Never mind, I figured it out shortly after posting. In tool options Transform was set to image instead of layer *face palm*

Sorry about that, if you're a mod please delete the thread Smile

Print this item