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

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 4,767
» Latest member: litstiGup
» Forum threads: 6,976
» Forum posts: 38,102

Full Statistics

Latest Threads
stylus doesn't draw lines
Forum: General questions
Last Post: Ofnuts
13 minutes ago
» Replies: 1
» Views: 35
Controlling Hue Chroma ?
Forum: Scripting questions
Last Post: Ofnuts
17 minutes ago
» Replies: 2
» Views: 102
Resize and convert a SVG ...
Forum: Scripting questions
Last Post: Ofnuts
24 minutes ago
» Replies: 8
» Views: 332
emergent chaos or entrail...
Forum: Gallery
Last Post: MJ Barmish
6 hours ago
» Replies: 0
» Views: 35
autumnal sunset (particul...
Forum: Gallery
Last Post: MJ Barmish
6 hours ago
» Replies: 0
» Views: 30
My Gimp 3.0 Plug-in (grou...
Forum: Gimp 2.99 & Gimp 3.0
Last Post: Ofnuts
6 hours ago
» Replies: 7
» Views: 201
Is layer Composite Space ...
Forum: General questions
Last Post: jez9999
9 hours ago
» Replies: 4
» Views: 172
Change Default Text
Forum: General questions
Last Post: rich2005
Yesterday, 10:00 AM
» Replies: 3
» Views: 132
Gimp 3.0.0. rc1 AppImage
Forum: Alternate Gimp packagings
Last Post: Tas_mania
Yesterday, 01:01 AM
» Replies: 13
» Views: 488
non-destructive filter no...
Forum: Gimp 2.99 & Gimp 3.0
Last Post: rich2005
11-14-2024, 12:24 PM
» Replies: 2
» Views: 119

 
  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

Photo Automated merging and export
Posted by: Bayard - 05-14-2020, 09:00 AM - Forum: Scripting questions - Replies (3)

Hello everybody !

I'm glad to find an active forum about this marvelous tool^^

So... ! I'm here about a very boring project, and I thought I can find some experts to give me one or two advices...  Shy

Here is the things I need to do :

- import a png file into a .xcf
- put this new layer between two other layers (for eg. Color2 and Color3, and I want my new png file to be slipped between them !)
- export the whole thing as a new png !

And I have to do this for some hundreds files  Confused

Do you know if it exists scripts I can use to make a batch, instead of doing it manually ?

Thanks a lot, have a nice day !

Print this item