| Welcome, Guest |
You have to register before you can post on our site.
|
| Latest Threads |
Colorized Layer Reverts t...
Forum: General questions
Last Post: TMORT
1 hour ago
» Replies: 2
» Views: 94
|
How to make image and mas...
Forum: Installation and usage
Last Post: ESH
Yesterday, 08:11 PM
» Replies: 4
» Views: 185
|
Multi window mode mode fa...
Forum: General questions
Last Post: teapot
Yesterday, 01:40 PM
» Replies: 5
» Views: 302
|
Animation with only GIMP ...
Forum: Gallery
Last Post: Scut-51
11-06-2025, 11:49 AM
» Replies: 25
» Views: 22,971
|
GIMP 3.04 opens with wind...
Forum: Windows
Last Post: subbareddy
11-05-2025, 07:47 AM
» Replies: 7
» Views: 3,781
|
Isolate, select and copy/...
Forum: General questions
Last Post: rich2005
11-04-2025, 04:39 PM
» Replies: 7
» Views: 504
|
"Plug-in crashed" on GIMP...
Forum: General questions
Last Post: skullamrotis
11-04-2025, 03:32 PM
» Replies: 4
» Views: 456
|
AIMAGoR - Artificial IMAg...
Forum: Other graphics software
Last Post: vitforlinux
11-04-2025, 12:09 PM
» Replies: 23
» Views: 9,942
|
RapidRAW
Forum: Other graphics software
Last Post: denzjos
11-03-2025, 12:51 PM
» Replies: 2
» Views: 278
|
Tutoriel installer Drea...
Forum: Tutorials and tips
Last Post: meric57
11-03-2025, 07:45 AM
» Replies: 0
» Views: 137
|
|
|
| Display problem in Gimp 2.10.38 (revision 1) |
|
Posted by: beaubrunb - 03-13-2025, 10:27 AM - Forum: OSX
- No Replies
|
 |
The problem is this.
When I try to open one of hundreds of images on my external drive and use Scroll, something really weird happens with the display. It only disappears when I hover my mouse over the file list.
Look at the screenshots.
The problem is even more obvious and annoying when I'm working on an image. Especially when I scroll or zoom...
Could someone explain how to fix this display bug?
Because it's really difficult to work comfortably.
[attachment=13197]
[attachment=13197]
My setup
Gimp 2.10.38 (revision 1) on a 15-inch Macbook Pro Retina
Processor: 2.4 GHz Intel Core i7
Memory: 8 GB 1600 MHz DDR3
Graphics: INTEL HD Graphics 4000 1536 MB
Nvidia GeForce GT 650 MB[/font][/size][/color]
|
|
|
| Crosshair guides for the v3 dialect of ScriptFu. |
|
Posted by: teapot - 03-11-2025, 03:11 PM - Forum: Extending the GIMP
- No Replies
|
 |
Further to Rich's post here:
https://www.gimp-forum.net/Thread-How-to...3#pid43283
I was finding the Filters -> Repeat and Filters -> Recently Used sometimes greyed out for the old script. So here's crosshair guides written for the v3 dialect of ScriptFu. It puts crosshair guides on the selected drawables.
Code:
#!/usr/bin/env gimp-script-fu-interpreter-3.0
(define (add-guides image drawable)
(let* ((drawable-width (gimp-drawable-get-width drawable))
(drawable-height (gimp-drawable-get-height drawable))
(offsets (gimp-drawable-get-offsets drawable))
(offset-x (car offsets))
(offset-y (cadr offsets))
(position-x (+ (/ drawable-width 2) offset-x))
(position-y (+ (/ drawable-height 2) offset-y)))
(gimp-image-add-vguide image position-x)
(gimp-image-add-hguide image position-y)))
(define (script-fu-crosshair-guides-v3 image drawables)
(script-fu-use-v3)
(gimp-image-undo-group-start image)
(do ((len (vector-length drawables))
(i 0 (+ i 1)))
((= i len))
; (gimp-message (string-append "i: " (number->string i)))
(add-guides image (vector-ref drawables i))
)
(gimp-image-undo-group-end image))
(script-fu-register-filter "script-fu-crosshair-guides-v3"
"Crosshair Guides v3"
"Place crosshair guides on all selected drawables."
"teapot"
"teapot"
"2025"
"*"
SF-ONE-OR-MORE-DRAWABLE
)
(script-fu-menu-register "script-fu-crosshair-guides-v3" "<Image>/Image/Guides")
|
|
|
| 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
|
|
|
|