Welcome, Guest |
You have to register before you can post on our site.
|
Forum Statistics |
» Members: 4,584
» Latest member: XarknoX
» Forum threads: 7,458
» Forum posts: 40,751
Full Statistics
|
|
|
Dotted box around Text -- how do I get rid of it? |
Posted by: Serenevictoria - 05-29-2022, 10:22 AM - Forum: General questions
- Replies (2)
|
 |
This is the most basic of questions, I realize. I just downloaded GIMP yesterday and am an old woman who is not tech-savvy. I created a new file and added some text. A dotted box now appears around the text and I can't get the dots to go away. I tried right clicking on both the text box and elsewhere on the screen after adding the text, thinking that would deselect the text. It did not. I tried clicking on the text tool, thinking perhaps that would turn off the text tool. It did not. I tried clicking on another tool, thinking that might deselect the text. It did not. I did a right click and chose Selection within the text box, but the None box is grayed out. Finally, I saved the new file with the box around the text, thinking the box would go away after I saved the file. I opened the file and the dotted box is still around the text.
Can someone please help me? I know I will do a DUH when someone tells me the answer, lol. Thank you for whatever help you can provide.
Victoria
|
|
|
Gimp 2.8.22 How do I crop to a Free Selection? |
Posted by: Songbird - 05-29-2022, 03:29 AM - Forum: Older Gimp versions (2.8, 2.6....)
- Replies (10)
|
 |
After carefully outlining this pencil using the Free Select tool I went to Image and clicked on Crop to Selection, and it didn't. Instead it gave me a rectangular crop that hugged the pencil. Actually, all I really need is the pencil on a white background, and I'd like to draw a black line around the edge of the pencil. Can someone help me do this?
(I can't seem to attach a screen shot of what I'm talking about.... Do I need special permission from an admin?)
|
|
|
linking a image with its mask |
Posted by: reena - 05-26-2022, 10:34 AM - Forum: Scripting questions
- Replies (12)
|
 |
I have tried script for linking a image with its mask but its not working. I need it to be worked urgently. Kindly help.
Code:
(define (script-fu-auto-mask-image Mask InImage OutImage)
(let* (
Image (car (file-tiff-load RUN-NONINTERACTIVE InImage InImage)) ImgW (car (gimp-image-width Image)) ImgH (car (gimp-image-height Image))
PrimeLayer (car (gimp-image-get-active-layer Image))
(gimp-layer-add-alpha PrimeLayer))
(gimp-layer-new Image ImgW ImgH RGB-IMAGE MaskLayer 0 LAYER-MODE-NORMAL)
(gimp-file-load-layer RUN-NONINTERACTIVE Image Mask)
(gimp-image-set-active-layer Image MaskLayer)
(gimp-image-select-color mask CHANNEL-OP-ADD drawable (0 0 0))
(gimp-image-set-active-layer Image PrimeLayer)
;(gimp-edit-clear drawable)
(gimp-drawable-edit-clear drawable)
(gimp-image-remove-layer Image MaskLayer)
(file-png-save-defaults RUN-NONINTERACTIVE Image drawable OutImage OutImage)
)
(gimp-displays-flush)
(gimp-quit TRUE)
)
I am trying to execute it through this command.
gimp -i -c -b '(script-fu-auto-mask-image "Pictures/test/mask.png" "Pictures/test/DSC00805.tif" "test.png")' -b '(gimp-quit 0)
|
|
|
How to change the color of an object in a photo |
Posted by: MaxPixel - 05-25-2022, 04:01 AM - Forum: General questions
- Replies (5)
|
 |
I'm new to Gimp and photo-editing. I took a photo, and there's an unpainted white panel that's distracting. Here's the photo: https://imgur.com/8xVe5Xv
Is there a way to add something to the panel?
Is there a way to change the color of the panel to black or grey?
Since the panel is a 3d object, it would not have uniform level of black or gray. Also, it would not be perfectly black since no real-life object is perfectly black.
|
|
|
|