Welcome, Guest |
You have to register before you can post on our site.
|
Forum Statistics |
» Members: 4,777
» Latest member: Jamesnex
» Forum threads: 7,593
» Forum posts: 41,393
Full Statistics
|
Latest Threads |
How to make a watermark o...
Forum: General questions
Last Post: kyolim
5 hours ago
» Replies: 5
» Views: 13,879
|
Linux command that does e...
Forum: Other graphics software
Last Post: rich2005
9 hours ago
» Replies: 1
» Views: 265
|
reliable Gimp 2.10.38 dow...
Forum: Older Gimp versions (2.8, 2.6....)
Last Post: denzjos
9 hours ago
» Replies: 2
» Views: 171
|
Batch Color Saturation
Forum: Extending the GIMP
Last Post: rich2005
Yesterday, 07:53 AM
» Replies: 15
» Views: 11,781
|
Photo play-time
Forum: Gallery
Last Post: Ofnuts
Yesterday, 07:32 AM
» Replies: 24
» Views: 21,655
|
BIMP plugin for GIMP 3.10
Forum: Extending the GIMP
Last Post: firefly
09-12-2025, 11:53 PM
» Replies: 2
» Views: 564
|
pl_stroke_arrows GIMP 3.0...
Forum: Extending the GIMP
Last Post: Scallact
09-12-2025, 04:03 PM
» Replies: 0
» Views: 232
|
How do you make text circ...
Forum: General questions
Last Post: rich2005
09-12-2025, 07:18 AM
» Replies: 12
» Views: 3,295
|
New Install, Black Screen...
Forum: OSX
Last Post: akhrameev
09-11-2025, 02:32 PM
» Replies: 3
» Views: 2,965
|
Trouble changing backgrou...
Forum: General questions
Last Post: tomatoSauce23
09-11-2025, 12:50 PM
» Replies: 6
» Views: 1,478
|
|
|
gimp 2.10.22 |
Posted by: vpkumar - 10-09-2020, 03:18 AM - Forum: General questions
- Replies (3)
|
 |
I downloaded and ionstalled the latest Gimp 2.10.22 in windows 64.
However now I find all my scripts -Fu and python plug in are greyed out.
How do I restore all these scripts and plugins
I am sorry I found out that this was because I had not opened any imgae in Gimp. Once I opened an image everything was OK.
|
|
|
GIMP 2.10 - Trouble Painting or Cloning On Top of Alpha |
Posted by: TMORT - 10-09-2020, 01:14 AM - Forum: General questions
- Replies (4)
|
 |
I have picture I'm working on with several layers. There is an area of alpha, and a border around it on another layer and another layer has an image of some leaves. I'd there is a gap of alpha between the colored border and the leaves. I'd like paint or clone over the gap of alpha.
I've tried adding another layer, raising and lowering layers. It is just locked somehow. I've tried pressing the little chekerboard in the layers tool panel for each of them.
I've used GIMP for a number of years, and a number of features and tools, but only do a few now and then. I never really use it enough to get proficient or retain how do things.
|
|
|
Copy channel from one image to another image. |
Posted by: Krikor - 10-08-2020, 06:35 PM - Forum: General questions
- Replies (6)
|
 |
How can I to copy channel from one image to another image?
I have two images open. In one of them I created channels which I want to use in the second image as well.
How I do:
I select one of the created channels - Channel for selection.
From this selection I create a path - Select - To Path.
In the Paths tab, drag this created path over the thumbnail of the second image.
I open the second image, and now I reverse the operation, select the path and create a channel from that selection.
Is there another, faster and more efficient way to copy channels from one layer to another?
Thank you.
|
|
|
can't get two blacks to match |
Posted by: ottenm - 10-08-2020, 03:50 PM - Forum: General questions
- Replies (2)
|
 |
In this PNG of 5 tally marks, the 5th one (going across) is visibly blacker & shinier than the others. I'd like it to match the other 4, but I'm struggling to figure out what the difference is.
Just grabbing pixels with the eye-dropper both sets seem about the same, a mix of solid black and colors that are close to black. I thought it might be the alpha values, but I tried Layer > Transparency > Threshold Alpha and at 99% there's still a noticeable difference between the pixels that are left.
Any help greatly appreciated.
https://ibb.co/T1DRhTH
|
|
|
Changing to a solid color |
Posted by: RawlinsCross - 10-07-2020, 07:25 PM - Forum: General questions
- Replies (2)
|
 |
Good day everyone,
I have an image of a rain coat that I'd like to fill in with solid color. You can see (link below) that it's a funky little design, but I'd like to fill it all in with a solid color. Maybe leave the face alone but if that's too hard, then it can be filled in as well.
This is my real first foray into GIMP. It obviously is very complicated and any start-up advice would be certainly appreciated. I figure this one would be good to start off on?
Picture of Raincoat
|
|
|
Newbie: Python script error |
Posted by: mike_b - 10-07-2020, 05:27 PM - Forum: Extending the GIMP
- Replies (1)
|
 |
I am very new to the Python scripting in Gimp. I have used Gimp in the past for manipulating individual images, but now I have to run specific operations on hundreds of images. So I checked into the scripting options. I discarded Script-fu, as I am familiar with programming languages like C, C++, etc., but the Schemes thing is quite different. Python, on the other hand is similar enough.
So, to start out I looked at some sample scripts like this one:
Code:
import glob
source_folder = "c:/mysource_image_folder/" #type your folder inside the quotes - append the final "/"
dest_folder = "c:/destination_folder/"
for filename in glob.glob(source_folder + "/*.png"):
img = pdb.gimp_file_load(source_folder + filename, source_folder + filename)
pdb.gimp_drawable_brightness_contrast(img.layers[0], 0.2, 0)
pdb.gimp_file_save(img, img.layers[0], dest_folder + filename, dest_folder + filename)
pdb.gimp_image_delete(img) # drops the image from gimp memory
When I copy and paste that into the Python window, I get an error right away on the "import glob" line (I also get that error when I just type in "import glob"):
import glob
File "<input>", line 1
rt glob
^
SyntaxError: invalid syntax
So, obviously I am doing something wrong. Did I not install something right? I installed Python 3.7 (Win10), then reinstalled Gimp 2.10.20. Do I need to do something else?
And apologies if this is the wrong thread. Please point me to the right thread if so.
Thanks.
|
|
|
Easy cropping |
Posted by: Ethel - 10-07-2020, 02:57 PM - Forum: General questions
- Replies (6)
|
 |
Hello,
What is the easiest way to explicitly crop from any edge? e.g. how to crop, say, 8px from the left, 10px from the right, and 12px from the bottom without using a mouse? A text box where I can enter the number or numbers I want would be good.
The instructions for changing a selection don't work for me. Can the same be done for a rectangular selection box using absolute or relative coordinates, i.e. a modal windows with four text boxes that dynamically shows the new selection rectangle on the image?
Thanks in advance
Ethel
|
|
|
|