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
1 hour ago
» Replies: 1
» Views: 203
|
How do I uninstall GIMP 3...
Forum: Linux and other Unixen
Last Post: Ofnuts
2 hours ago
» Replies: 1
» Views: 54
|
AI Gimp Plugins
Forum: Watercooler
Last Post: merlilderman
Yesterday, 04:16 PM
» Replies: 21
» Views: 68,176
|
How to make a watermark o...
Forum: General questions
Last Post: kyolim
09-13-2025, 10:05 PM
» Replies: 5
» Views: 14,166
|
Linux command that does e...
Forum: Other graphics software
Last Post: rich2005
09-13-2025, 06:06 PM
» Replies: 1
» Views: 473
|
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: 374
|
Batch Color Saturation
Forum: Extending the GIMP
Last Post: rich2005
09-13-2025, 07:53 AM
» Replies: 15
» Views: 12,057
|
Photo play-time
Forum: Gallery
Last Post: Ofnuts
09-13-2025, 07:32 AM
» Replies: 24
» Views: 21,894
|
BIMP plugin for GIMP 3.10
Forum: Extending the GIMP
Last Post: firefly
09-12-2025, 11:53 PM
» Replies: 2
» Views: 726
|
pl_stroke_arrows GIMP 3.0...
Forum: Extending the GIMP
Last Post: Scallact
09-12-2025, 04:03 PM
» Replies: 0
» Views: 377
|
|
|
Drag & Drop in Layers Not Working |
Posted by: blgriffin83 - 03-13-2025, 06:24 PM - Forum: General questions
- Replies (2)
|
 |
For the longest time my drag and drop hasn't been working in the layers. When I grab the layer it moves across the screen as it should but for whatever reason when i drop it just doesn't move. I have been having to move layers around using the arrows at the bottom of the panel but I cannot use layer groups because I can't drop and drop layers into the group. I have tried resetting to default as well reinstalling GIMP.
Anyone else have this issue?
|
|
|
Automate croping without reducing original image size |
Posted by: mrcoffee2000 - 03-13-2025, 01:01 PM - Forum: General questions
- Replies (2)
|
 |
Hello,
I don't do much image editing in anything resembling robust software. Apologies in advance if I use terms that are incorrect (please feel free to correct me).
What I'm trying to accomplish - I routinely digitize archived paper documents that are oftentimes spiral bound or comb bound. I usually unbind these to get good scans. The problem is, the scans always show the edges of the paper and the holes left from binding. I would like to automate 'whiting out' the margins to erase these marks on the scans so I can get a cleaner scan for archiving. I want to retain the original image size so the contents of the document look like the original, including keeping original margins and whatnot.
I am using GIMP 2.10. I found the BIMP plugin and started messing with the features in that. It seems like automated a crop is pretty straight-foward with that plugin, but I don't see a way to retain the original image size. GIMP has options to retain the original image size when cropping an image. Crop may not be the right function to accomplish what I want, so any advice is appreciated.
|
|
|
Making a Selection from a Channel |
Posted by: cloudescaper - 03-13-2025, 11:23 AM - Forum: Gimp 2.99 & Gimp 3.0
- Replies (3)
|
 |
Hi there, thanks for reading this!
I have an image (layer) in b&w I want to use as a mask. In Photoshop, I used to make sure the layer is active and just press "strg+alt+2" or make a selection from the RBG or Green channel in one click. This gave me a selection that is hard in the bright white areas and softer in the areas where the light is less bright. I used this simple method to edit the highlights in my images with absolute precision, since I can paint on the b&w layer and exclude certain areas as well. It was so quick an easy and I was wondering if there is fast way to get the same selection out of gimp?
Thank you in advance
|
|
|
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")
|
|
|
|