Welcome, Guest
You have to register before you can post on our site.

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 4,930
» Latest member: Jamesda05
» Forum threads: 7,694
» Forum posts: 41,842

Full Statistics

Latest Threads
"Mouseclick" is not recor...
Forum: General questions
Last Post: ESH
56 minutes ago
» Replies: 0
» Views: 16
How to get G'MIC within G...
Forum: General questions
Last Post: Tas_mania
2 hours ago
» Replies: 3
» Views: 286
Colorized Layer Reverts t...
Forum: General questions
Last Post: sallyanne
Yesterday, 08:57 AM
» Replies: 6
» Views: 404
Gimp 3.0.6-1 G'Mic-Qt ups...
Forum: General questions
Last Post: denzjos
11-11-2025, 07:08 PM
» Replies: 2
» Views: 153
Issue with cut selection
Forum: Installation and usage
Last Post: kmll
11-11-2025, 11:56 AM
» Replies: 2
» Views: 147
Gimp 3.x scanner xsane pl...
Forum: Gimp 2.99 & Gimp 3.0
Last Post: Ofnuts
11-10-2025, 08:36 AM
» Replies: 14
» Views: 11,613
Gimp 3.0 get Metadata wit...
Forum: Scripting questions
Last Post: Volker
11-09-2025, 06:19 PM
» Replies: 3
» Views: 297
Text Editor hardly ever w...
Forum: General questions
Last Post: Snacko
11-09-2025, 05:13 PM
» Replies: 4
» Views: 384
How to make image and mas...
Forum: Installation and usage
Last Post: Ofnuts
11-08-2025, 08:39 PM
» Replies: 5
» Views: 346
Multi window mode mode fa...
Forum: General questions
Last Post: teapot
11-07-2025, 01:40 PM
» Replies: 5
» Views: 488

 
  Specific form as cutting mask
Posted by: javitolin.ar - 05-18-2020, 04:00 AM - Forum: General questions - Replies (3)

Hi everyone i am learning gimp (2.10.18 Linux version) usage and i have found several tutorials for the basics but not for more complex tasks. For example i have an image A which have car parked on a street and i have another image B which shows a blue caribbean sea. Let's say i select the car from the image A and want to use that car to select and cut or copy a car shaped caribbean sea and copy it in the image A instead of the car so that where originally was the car it would be a sea with the shape of that car. Is there any way to do that? Thanks in advance

Print this item

  Align Tool Greyed Out
Posted by: chauhansaimc - 05-17-2020, 10:14 PM - Forum: General questions - Replies (5)

My align tools are greyed out and don't do anything when I click them(see image in link). Does anyone have any idea on how to fix this?
https://drive.google.com/open?id=1PEO-yT...H6rCc7naMs

Print this item

Photo How to get just the outline of the text
Posted by: plasmon360 - 05-17-2020, 07:04 PM - Forum: General questions - Replies (2)

Hi!

I am a GIMP newbie.

I was able to create an outline of the text "A" by using "Select>grow" command as shown in my attempt here. The red A is the grown 'A' and is on one separate layer and 'thin' black/original 'A' is on another layer. The red 'A'  layer is below the black 'A' layer. 

However, what I want is the subtraction of the grown text and actual text. In other words, I just need the outline and want the black 'A' region to become transparent. So I am looking for some kind of boolean operation of these two layers. 

Is there a way to do it? I would appreciate if you can point me in the right direction.

Thanks

Print this item

  Brush error - Gimp2.10 (MAC)
Posted by: AdditionalNumber0 - 05-17-2020, 04:48 PM - Forum: OSX - Replies (5)

Hello,

I've been struggling with this for a while and i can't find any relevant threads/forums addressing a similar issue.

Every time i want to create a custom brush, I get an error

"New Brush Message

Error while executing script-fu-paste-as-brush:

Error: Procedure execution of file-gbr-save failed: Running procedure 'file-gbr-save-internal' failed: execution error"

I use a macbook air.

Could someone help me? Thanks so much.

Warm Regards

Print this item

Sad Don't work procedures plug-in-displace, plug-in-bump-map
Posted by: EvgCoder - 05-17-2020, 10:21 AM - Forum: Scripting questions - Replies (4)

Hello! I need your help!!!
I write little script for Gimp version 2.10.14, this script will an animation. It use some procedures so plug-in-displace, plug-in-bump-map but they don't work, i don't know why? I changed their signature, changed value in every param but without good result. Sad I want to get a result how i show in my attach file on picture
It code:

Code:
(define (script-fu-animtest
                           image
                           drawable
                           blur-radius
                           waviness)
 
 (let* (
         (orig-join-layer nil)
         (copy-join-layer nil)
         (displace-join-layer nil)
         (result-layer nil)
         (width (car (gimp-image-width image)))
         (height (car (gimp-image-height image)))
         (total-frames 1)
         (group nil)
         (name-group "Animation")
         (noise-layer nil)
         (xsize 12.1)
         (ysize 0.6)
       )

   (gimp-image-undo-group-start image)
   (set! orig-join-layer (car (gimp-image-flatten image)))
   (set! noise-layer (car (gimp-layer-copy orig-join-layer 1)))
   (set! copy-join-layer (car (gimp-layer-copy orig-join-layer 1)))
   (gimp-image-resize image (* width 1.2) (* height 1.2) (/ width 10) (/ height 10))
   (set! group (car (gimp-layer-group-new image)))
   (gimp-item-set-name group name-group)
   (gimp-image-insert-layer image group 0 0)
   (gimp-image-insert-layer image copy-join-layer group 0)
   (gimp-image-insert-layer image noise-layer group 0)
   (plug-in-solid-noise RUN-NONINTERACTIVE image noise-layer TRUE FALSE (realtime) 1 xsize ysize)
   (plug-in-gauss-rle 1 image noise-layer blur-radius 1 1)
   (gimp-drawable-brightness-contrast noise-layer 0 .5)
   (gimp-layer-resize-to-image-size copy-join-layer)
   (gimp-layer-resize-to-image-size noise-layer)
   (gimp-drawable-offset copy-join-layer FALSE OFFSET-TRANSPARENT (/ width 10) (/ height 10))
   (gimp-drawable-offset noise-layer FALSE OFFSET-TRANSPARENT (/ width 10) (/ height 10))

; while - here will animation - create frames

   ; (gimp-image-select-rectangle image CHANNEL-OP-REPLACE 0 0 (car (gimp-image-width image)) (car (gimp-image-height image)))
   (set! result-layer (car (gimp-layer-new-from-drawable copy-join-layer image)))
   (gimp-image-insert-layer image result-layer group 0)
   (plug-in-bump-map RUN-NONINTERACTIVE image result-layer
                     noise-layer
                     135
                     45
                     5
                     0 0 0 0
                     TRUE
                     FALSE
                     2)
   (plug-in-displace RUN-NONINTERACTIVE image
                           result-layer
                           123
                           -123
                           .6
                           .6
                           noise-layer
                           noise-layer
                           1)
   (gimp-image-remove-layer image orig-join-layer)
   (gimp-image-undo-group-end image)
   (gimp-displays-flush)

 )
)

(script-fu-register "script-fu-animtest"
                   "Animation Test"
                   "Animation Test"
                   "Author"
                   "Author"
                   "2020"
                   "RGB*, GRAY*"
                   SF-IMAGE    "Image"         0
                   SF-DRAWABLE "Layer to blur" 0
                   SF-VALUE    "Blur strength" "52"
                   SF-ADJUSTMENT "Waviness" '( -40 -500 500 1 1 0 1 ))

(script-fu-menu-register "script-fu-animtest"
                        "<Image>/Script-Fu/Tutorials")



Attached Files Thumbnail(s)
   
Print this item

  Filling with sharp edge
Posted by: szbalogh - 05-17-2020, 08:47 AM - Forum: General questions - Replies (2)

I want to extract some figures from a photo and edit it. Want to fill the selection but it adds a thick border to it.
Soft edges are reduced to 0 pixels. If i add some 50 pixels it extends the border. 
How can i fill the selection only up to the selection line?
I am new to GIMP, please help, it is so annoying that i cant proceed.
   

Print this item

  ofn-text-path-selection
Posted by: Ofnuts - 05-14-2020, 10:14 PM - Forum: Extending the GIMP - Replies (4)

If you create text where there is an overlap between characters:

   

The strokes of these characters overlap:

   

And if you try to get a selection from that path you don’t get the initial text:

   

This is because Gimp uses an “even-odd” algorithm to determine if a pixel is selected or not: drawing a line from the pixel in any random direction, the pixel is outside the selection if the line intersects an even number of strokes (0
is considered even), and inside the selection if the line intersects an odd number of strokes. If the overlap areas, such a line intersects two strokes, one for each character, so the overlap area is unselected.

This plugin uses a different algorithm: it identifies the strokes that belong to the same characters (more accurately, sets of nested strokes), and adds theses characters separately to the selection, so the overlap areas are the union of the selections for each characters and are selected:

   

As usual plugin is here. Enjoy.

Thanks to Akovia for the incentive and the help. Your PC shall not have burned in vain!

Print this item

  image was taken from phone and unclear. help?
Posted by: WhyDoWeExist_ - 05-14-2020, 08:35 PM - Forum: General questions - Replies (3)

I have an image that was taken with a phone of a screen and need to clear it up (by removing the weird blu lines and clearing it up) but its finicky to do it with the bucket tool do you know a better way I can do it? and no i don't have it on my computer it was from the internet



Attached Files Thumbnail(s)
   
Print this item

  New Install Problem w/Cursor
Posted by: Dawter - 05-14-2020, 02:56 PM - Forum: General questions - Replies (1)

I've been using an old Gimp for ages and just upgraded to 2.10.18.

My cursor will close out things but will not allow me to click on for example, When I'm in Preferences and I chose which theme I want it lets me do that. But when I click on "OK" to save it, it does nothing. It lets me X out and close things but won't allow me to save my preferences.
Any idea as to why? Thank you.

Print this item

  Create Paths from Guidelines?
Posted by: scrollsgeek - 05-14-2020, 12:20 PM - Forum: General questions - Replies (2)

Does anyone know if it is possible to create paths from guide lines? Thanks for you help!

Print this item