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

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 4,363
» Latest member: Hakakeen
» Forum threads: 6,666
» Forum posts: 36,332

Full Statistics

Latest Threads
3D like effect on frames ...
Forum: General questions
Last Post: Krikor
50 minutes ago
» Replies: 4
» Views: 128
Some folders missing icon...
Forum: General questions
Last Post: programmer_ceds
6 hours ago
» Replies: 1
» Views: 68
Darktable Images Opening ...
Forum: Windows
Last Post: rich2005
6 hours ago
» Replies: 5
» Views: 187
Gimp UI progress bar "can...
Forum: Scripting questions
Last Post: JBreckeen
Yesterday, 05:22 PM
» Replies: 2
» Views: 106
Automatic cutting image i...
Forum: General questions
Last Post: rinaldop
Yesterday, 02:39 PM
» Replies: 6
» Views: 144
Downloaded the full gimps...
Forum: Watercooler
Last Post: vitforlinux
Yesterday, 11:49 AM
» Replies: 4
» Views: 267
Currently Active Image
Forum: Scripting questions
Last Post: JBreckeen
05-05-2024, 07:30 PM
» Replies: 6
» Views: 244
[SUGGESTION] Improved uni...
Forum: General questions
Last Post: Ofnuts
05-03-2024, 09:48 PM
» Replies: 4
» Views: 246
Getting active image and ...
Forum: Tutorials and tips
Last Post: Ofnuts
05-02-2024, 07:32 AM
» Replies: 0
» Views: 166
python-fu pdb.file_exr_sa...
Forum: Scripting questions
Last Post: JBreckeen
05-01-2024, 03:12 PM
» Replies: 0
» Views: 114

 
  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

  Github for gimp plug ins
Posted by: jacques_duflos - 07-25-2023, 01:16 AM - Forum: Extending the GIMP - Replies (1)

Is it a good idea to use github for creating and using gimp plug-ins ? I guess it is very useful to share them, and for team work. But is it useful to clone a repository directly in your plug-in folder ? will it keep the plug-ins up to date ?

I just started using it but I'm still very new to it. If anyone has pieces of advice, experience or whatever  please share

Print this item

  No wonder it's difficult, even the English don't agree between themselves
Posted by: Ofnuts - 07-24-2023, 07:18 PM - Forum: Watercooler - No Replies



Print this item

  I'm looking for a GIMP extension.
Posted by: piotrek94k - 07-24-2023, 05:37 PM - Forum: Extending the GIMP - Replies (2)

Hello,
Could someone recommend me an extension that makes it possible to create nice logos and inscriptions.
I've attached a preview image of what I mean.
Thank you very much for your time.
Have a good evening.
Piotrek



Attached Files Image(s)
   
Print this item