Welcome, Guest |
You have to register before you can post on our site.
|
Latest Threads |
Is there any version wher...
Forum: Older Gimp versions (2.8, 2.6....)
Last Post: rich2005
3 hours ago
» Replies: 1
» Views: 210
|
How do I uninstall GIMP 3...
Forum: Linux and other Unixen
Last Post: Ofnuts
3 hours ago
» Replies: 1
» Views: 66
|
AI Gimp Plugins
Forum: Watercooler
Last Post: merlilderman
Yesterday, 04:16 PM
» Replies: 21
» Views: 68,212
|
How to make a watermark o...
Forum: General questions
Last Post: kyolim
09-13-2025, 10:05 PM
» Replies: 5
» Views: 14,178
|
Linux command that does e...
Forum: Other graphics software
Last Post: rich2005
09-13-2025, 06:06 PM
» Replies: 1
» Views: 477
|
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: 382
|
Batch Color Saturation
Forum: Extending the GIMP
Last Post: rich2005
09-13-2025, 07:53 AM
» Replies: 15
» Views: 12,064
|
Photo play-time
Forum: Gallery
Last Post: Ofnuts
09-13-2025, 07:32 AM
» Replies: 24
» Views: 21,898
|
BIMP plugin for GIMP 3.10
Forum: Extending the GIMP
Last Post: firefly
09-12-2025, 11:53 PM
» Replies: 2
» Views: 728
|
pl_stroke_arrows GIMP 3.0...
Forum: Extending the GIMP
Last Post: Scallact
09-12-2025, 04:03 PM
» Replies: 0
» Views: 381
|
|
|
Select By Color tool |
Posted by: meghan_e - 03-10-2025, 11:48 PM - Forum: Gimp 2.99 & Gimp 3.0
- Replies (2)
|
 |
I've been working with Gimp 2.10 for a long time. I'm not a Gimp expert at all just like playing around.
Anyway, I installed Gimp 3-R2 and was trying to do a simple
transparency layer -> Filters -> Render -> Noise -> Solid Noise.
Then I went to the Select By Color tool and it won't select anything.
I tried these exact steps in Gimp 2.10 to be sure and it works fine.
Is there something else that needs to be set up? If there are instructions, I'm happy to read them, I just haven't been able to find anything about it.
Thank you!!
|
|
|
How to use selecting multiple layers with the tranform tools. |
Posted by: teapot - 03-09-2025, 07:07 AM - Forum: Gimp 2.99 & Gimp 3.0
- Replies (9)
|
 |
Hi, I'm just tying to understand the details of selecting multiple layers. I get that you can do this with shift or ctrl keys. If for example you wanted to rotate three layers, what's the rule to say which one is used for the "preview" while you are adjusting the rotate?
In gimp 2.10 you could link the layers and choose which one is active so that's the one that's used while you are adjusting the rotate.
|
|
|
Text to path query |
Posted by: Evans8773 - 03-08-2025, 01:47 PM - Forum: General questions
- Replies (1)
|
 |
Hi all
Just started using gimp again and have an issue I have had in the past but forgot how to fix it. Applying text to a circle the top of the circle text along path does as intended but when I do the bottom half text it apples to the path like it is stacked and just looks like jumbled up spaghetti. Like I said this has happened before but cannot remember how to fix it.
The initial text to path requires me to use the flip tool so it looks right but then after the flip I get spaghetti
Hope someone can help
Cheers
|
|
|
Cutting image along guides for printing |
Posted by: azar - 03-06-2025, 04:57 PM - Forum: General questions
- Replies (5)
|
 |
HELLO I will try to explain my problem. I want to turn an image into a poster with custom dimensions, so I wanted to use GIMP’s guides and crop the image following the guides. The thing I don’t understand is that nothing matches when I put them in the image: the image size, the guides, etc.
I have an image that is 63×83 cm.
I set my margins in cm based on the image scale, but they should be much smaller. Instead, they are still set to 1 cm.
And when I go to Image > Image Size and Dimensions, I get another size entirely.
THANK
IMAGE
|
|
|
Unable to find or use script I created |
Posted by: Desicub99 - 03-03-2025, 10:18 PM - Forum: Extending the GIMP
- Replies (4)
|
 |
I developed this script:
(define (script-fu-red-rectangle-with-borders)
(let* (
(width 640)
(height 400)
(rect-width 625)
(rect-height 385)
(border-size 19)
(black-border 5)
(image (car (gimp-image-new width height RGB)))
(bg-layer (car (gimp-layer-new image width height RGBA-IMAGE "Background" 100 NORMAL)))
(rect-layer (car (gimp-layer-new image width height RGBA-IMAGE "Red Rectangle" 100 NORMAL)))
(border-layer (car (gimp-layer-new image width height RGBA-IMAGE "White Border" 100 NORMAL)))
(black-border-layer (car (gimp-layer-new image width height RGBA-IMAGE "Black Border" 100 NORMAL)))
)
;; Add layers to image
(gimp-image-insert-layer image bg-layer 0 -1)
(gimp-image-insert-layer image rect-layer 0 -1)
(gimp-image-insert-layer image border-layer 0 -1)
(gimp-image-insert-layer image black-border-layer 0 -1)
;; Set transparency background
(gimp-context-set-background '(0 0 0 0))
(gimp-drawable-fill bg-layer TRANSPARENT-FILL)
;; Select centered rectangle
(gimp-rect-select image
(/ (- width rect-width) 2) ;; X Position
(/ (- height rect-height) 2) ;; Y Position
rect-width rect-height
REPLACE)
;; Fill rectangle with mesh pattern
(gimp-context-set-pattern "Mesh") ;; Ensure GIMP has a mesh pattern
(gimp-edit-bucket-fill rect-layer PATTERN-FILL NORMAL 100 0 FALSE 0 0)
;; Stroke red border
(gimp-context-set-foreground '(255 0 0)) ;; Set color to red
(gimp-edit-stroke rect-layer)
;; Expand selection for white border
(gimp-selection-border image border-size)
;; Fill border with white
(gimp-context-set-foreground '(255 255 255)) ;; White color
(gimp-edit-bucket-fill border-layer FG-BUCKET-FILL NORMAL 100 0 FALSE 0 0)
;; Deselect
(gimp-selection-none image)
;; Select entire canvas for black border
(gimp-selection-all image)
;; Stroke black border
(gimp-context-set-foreground '(0 0 0)) ;; Black color
(gimp-edit-stroke black-border-layer)
;; Display image
(gimp-display-new image)
(gimp-image-undo-group-end image)
))
;; Register the script in GIMP
(script-fu-register
"script-fu-red-rectangle-with-borders" ;; Internal script name
"Red Rectangle with Borders" ;; Menu name (what you see in GIMP)
"Creates a red rectangle with a mesh pattern and white/black borders"
"Your Name"
"Your Name"
"2025"
"*"
""
"script-fu-red-rectangle-with-borders") ;; Function to execute
and have tried several ways to use it.
First I saved it in:
C:\Users\username\AppData\Roaming\GIMP\2.10\scripts\red-rectangle-with-borders.scm
I tried filters -> Script-FU -> Refresh Script and clicked on filters -> Script-FU and the file wasn't there. I closed Gimp and reopened it.
Then I I looked in help -> Plug-in browser and couldn't find it there.
I looked in all of the menus since I read that the scm file could be anywhere but no luck.
So I saved it in downloads and moved it to this path:
C:\Program Files\GIMP 2\share\gimp\2.0\scripts\red-rectangle-with-borders.scm
I did the same things that I did when I saved it in the roaming folder and still no luck.
Would someone be gracious enough to show me what I did wrong? Thanks
|
|
|
|