Welcome, Guest |
You have to register before you can post on our site.
|
Latest Threads |
How to remove the backgro...
Forum: General questions
Last Post: BernardBouree
10 hours ago
» Replies: 2
» Views: 78
|
Apostrophe character not ...
Forum: General questions
Last Post: chucklepie
Yesterday, 09:34 AM
» Replies: 3
» Views: 365
|
Windows Gimp 3.0 symbol e...
Forum: Tutorials and tips
Last Post: rich2005
Yesterday, 08:11 AM
» Replies: 0
» Views: 95
|
problem with abr brushes ...
Forum: General questions
Last Post: rich2005
06-08-2025, 06:10 PM
» Replies: 1
» Views: 175
|
Select region and bucket ...
Forum: General questions
Last Post: sallyanne
06-08-2025, 03:44 AM
» Replies: 3
» Views: 425
|
Change the hand cursor in...
Forum: General questions
Last Post: mrkid
06-08-2025, 12:14 AM
» Replies: 2
» Views: 302
|
plugin ofn3-layer-tiles: ...
Forum: Extending the GIMP
Last Post: Ofnuts
06-07-2025, 07:06 AM
» Replies: 4
» Views: 580
|
Gimp does not create thum...
Forum: General questions
Last Post: rich2005
06-06-2025, 05:47 PM
» Replies: 1
» Views: 250
|
Watercooler at watercoole...
Forum: Watercooler
Last Post: trandoductin
06-06-2025, 02:57 PM
» Replies: 0
» Views: 212
|
[RFC] Summer of code proj...
Forum: Gimp 2.99 & Gimp 3.0
Last Post: MrsP-from-C
06-06-2025, 01:27 PM
» Replies: 11
» Views: 1,813
|
|
|
Spell checker |
Posted by: DrDoctor - 12-25-2017, 12:38 AM - Forum: General questions
- Replies (2)
|
 |
Does GIMP have any kind of spell checking tool/solution for the text tool?
Found nothing in this forum, nothing in the old gimpforum forum, couldn't find any obvious plugins in the plugins repo either.
|
|
|
All I Want For Christmas |
Posted by: rich2005 - 12-24-2017, 12:21 PM - Forum: Watercooler
- Replies (1)
|
 |
Young boy goes to his father and asks
'Can I have a BitCoin for Chrismas'
Father says
What! £10,362 ....
£9,760 is a lot of money ....
Why do you want £11,061?
|
|
|
delete not working |
Posted by: garyartista - 12-23-2017, 03:57 PM - Forum: General questions
- Replies (10)
|
 |
I am using gimp 2.8 on Ubuntu 16.04 with a Wacom Tablet. The problem is that even after reinstalling Gimp the erase key fails to work. It continues to paint, say, and refuses to switch to erase. I can make text boxes and use other tools but the program refuses to switch to erase. If I change the file .gimp2.8 to gimp2.8delete or something and reinitiate Gimp, erase works for a few minutes and the problem returns. The problem occurs whether I use the tablet or the mouse. Any thoughts?
|
|
|
Move a text layer. |
Posted by: ssallen - 12-22-2017, 04:23 PM - Forum: General questions
- Replies (4)
|
 |
Is there a way to do this? The move tool doesn't work on text layers apparently.
I create a lot of text layers programatically and I don't want to have to use the resize tools afterwards just to move the text around. I want the same dimensions... just placed in a different location.
Does anyone have a any tips or tricks for this?
|
|
|
settings palette disappeared |
Posted by: gib65 - 12-22-2017, 04:05 AM - Forum: General questions
- Replies (3)
|
 |
Hello,
Somehow the settings palette for each tool has disappeared and I can get it back. By 'settings palette', I mean, for example, the palette on which I can choose remove, union, intersection, etc. for the magic wand select tool, or the line thickness of the free form pencil tool. There is nothing in the recently closed windows list. Reinstalling Gimp didn't work. How do I get it back?
Thanks
|
|
|
Scheme help (unbound error) |
Posted by: ssallen - 12-21-2017, 08:31 PM - Forum: Scripting questions
- Replies (3)
|
 |
See below.
I get a g1Layer is unbound error, despite the fact that (non-empty) text is being passed in to the g1Text parameter.
The intent is to create a text layer and then position a comic book style talk bubble underneath it.
Can you place conditionals inside the local variable declaration area in scheme? How do I prevent bubbles/text layer being created if the user passes in a blank string?
Code:
(script-fu-register
"script-fu-talk-bubble" ;func name
"Diag Bubble" ;menu label
"Creates a dialog bubble" ;description
"-0-" ;author
"copyright 2017, -0-" ;copyright notice
"November 10, 2017" ;date created
"" ;image type that the script works on
SF-IMAGE "Input image" 0
SF-DRAWABLE "Input drawable" 0
SF-STRING "g1Text" "**" ;a string variable
SF-FONT "Font" "Sans" ;a font variable
SF-ADJUSTMENT "Font size" '(32 1 1000 1 10 0 1) ;a spin-button
SF-COLOR "gText Color" '(250 104 255) ;color variable
SF-COLOR "mText Color" '(0 0 0) ;color variable
SF-COLOR "dText Color" '(208 59 59) ;color variable
SF-COLOR "Bubble color" '(255 255 255)
SF-TOGGLE _"createBubbles" TRUE
)
(script-fu-menu-register "script-fu-talk-bubble" "<Image>/Image/CreateLayers")
(define (script-fu-talk-bubble aimg adraw g1Text inFont inFontSize textColorG textColorM textColorD bubbleColor createBubbles)
(gimp-context-set-foreground textColorG)
(gimp-context-set-background bubbleColor)
(let*
(
(theImageWidth (car (gimp-drawable-width adraw) ) )
(theImage aimg)
(theImageHeight (car (gimp-drawable-height adraw) ) )
(theImageX)
(theImageY)
(theText)
(theTextBubble)
(theBuffer)
(relLocX 12)
(space 32)
(g1Len (string-length g1Text))
(set! theImageWidth (car (gimp-drawable-width adraw) ) )
(set! theImageHeight (car (gimp-drawable-height adraw) ) )
(if (> g1Len 0)
(g1Layer
(car
(gimp-text-layer-new
aimg
g1Text
inFont
inFontSize
PIXELS
)
)
)
)
)
(if (= createBubbles TRUE)
(
(gimp-image-add-layer theImage g1Layer 0)
(gimp-text-layer-set-color m1Layer textColorM)
(gimp-layer-set-offsets g1Layer 12 relLocX)
(set! relLocX (+ (+ 12 inFontSize) space))
(set! theImageWidth (car (gimp-drawable-width g1Layer) ) )
(set! theImageHeight (car (gimp-drawable-height g1Layer) ) )
(set! theImageX (car (gimp-drawable-offsets g1Layer) ) )
(set! theImageY (cadr (gimp-drawable-offsets g1Layer) ) )
(set! theTextBubble
(car
(gimp-image-select-round-rectangle
theImage 0 theImageX theImageY theImageWidth theImageHeight 12 12)
)
)
(gimp-selection-grow theImage 4)
(gimp-context-set-foreground bubbleColor)
(gimp-edit-bucket-fill bubbleLayer 0 0 100 0 0 0 0 )
(gimp-layer-set-opacity bubbleLayer 90)
))
)
)
|
|
|
Warp / transform image along path |
Posted by: asdthy - 12-20-2017, 11:13 PM - Forum: General questions
- Replies (6)
|
 |
Hi,
I'd like to shift an image to fit a path that I've drawn. There used to be a plugin/script that did this but i can't find it anymore.
I have a few scanned images from paper sections that were a meter or more long and the images are skewed along the length varying amounts somewhat randomly.
Basically I'd draw a path along one border line of the skewed image. I'd then draw horizontal path. The plugin would subtract the space between the 2 paths in line with the vertical direction of the image.
This worked really well and I have some other cases where I'd like to do this, but as I said I can't find the plugin anymore.
Has anyone ever done something like this or have any ideas?
Thanks
Matt
|
|
|
|