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

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 5,943
» Latest member: vinujoh
» Forum threads: 7,371
» Forum posts: 40,134

Full Statistics

Latest Threads
Save Rectangle Size
Forum: General questions
Last Post: DennisV
1 hour ago
» Replies: 4
» Views: 128
Can't remove selection.
Forum: General questions
Last Post: blogsofwardotme
1 hour ago
» Replies: 0
» Views: 18
New color : olo
Forum: Watercooler
Last Post: Tas_mania
2 hours ago
» Replies: 1
» Views: 224
Gimp exported image gets ...
Forum: General questions
Last Post: jefferyrowley@netscape.net
10 hours ago
» Replies: 9
» Views: 8,644
Ice Hockey problem - shoo...
Forum: General questions
Last Post: Ofnuts
Yesterday, 07:44 PM
» Replies: 3
» Views: 103
Drop file feature for 2.1...
Forum: General questions
Last Post: Veset
Yesterday, 07:03 PM
» Replies: 2
» Views: 73
Layers padlock frozen
Forum: Gimp 2.99 & Gimp 3.0
Last Post: rich2005
Yesterday, 03:35 PM
» Replies: 1
» Views: 54
Big problems with apple
Forum: General questions
Last Post: Thom
Yesterday, 03:02 PM
» Replies: 0
» Views: 54
Gimp 3.0 print menu missi...
Forum: Gimp 2.99 & Gimp 3.0
Last Post: seven7777777s
04-24-2025, 04:25 PM
» Replies: 6
» Views: 796
Script-Fu in GIMP 3 websi...
Forum: Extending the GIMP
Last Post: pixelmixer
04-24-2025, 11:48 AM
» Replies: 4
» Views: 640

 
  fuzzy tool select not working
Posted by: siren - 08-08-2017, 07:24 PM - Forum: OSX - Replies (30)

And it is proceeding to drive me up the wall.

Every time I open a new document and draw it's fine, then without touching any of the controls, the fuzzy select tool stops working.
I have tried numerous things such as creating a new document, resetting the controls, checking to see what mode I was on, and so on and so forth. However, my efforts remain fruitless and I'm hoping that someone on here can help me.
If you could that would be greatly appreciated.

Print this item

  How can I fix this?
Posted by: blueYOSHI - 08-08-2017, 05:57 PM - Forum: General questions - Replies (3)

Hi, I got a problem with GIMP. First, take a look at these two pictures.
[Image: yAU0DDp.png][Image: SK3ghHi.png]
The first one is super clean, I did that one before some years. The second one looks a bit messy and just bad. I just don't know how to recreate the first one! If you got some ideas how I could do this, please answer. Im sure I didn't do it manually.

How I did this the second time:
I wrote the text with a size of 18px and used the blend tool to color it.
Copied the layer, did "alpha to selection", increased the size of it with "Grow" (listed under "Select") and used the blend tool again.
Redid that for all layers (4 in total).
Used "Scale Image" with "None" as "Interpolation".  (the pic already looked the same before this)

Print this item

  Transforming a selection on a layer
Posted by: pdev - 08-07-2017, 10:11 PM - Forum: General questions - Replies (4)

Hi, I'm just switching to GIMP from Photoshop and can't seem to work out how to do something I did quite often in PS.


I had photographed a number of objects and one of them needed to be rotated. In PS I would select the object, copy it to a new layer (Cmd-J on my Mac), select the object on the layer with the Transform tool (Cmd-T) and then rotate it with the curly arrows in the corner.

I've managed to copy a selection to a new layer in GIMP (copy > paste > new layer) but can't work out how to rotate the selection independently of the base layer.

Any help would be greatly appreciated!

Print this item

  Skript for mirroring left and right side of portrait photo
Posted by: Juniata - 08-07-2017, 03:35 PM - Forum: Extending the GIMP - Replies (6)

Hi everybody!

I am a total beginner to Script Fu, and am having a hard time finding good documentation. If anybody has some good general advice, it is very much welcome.

But here is my specific problem:

I would like to write a script which lets me automatically create two images out of one portrait picture: One from the left half of the face and its mirror image, one from the right side respectively. It is to show that a face is never completely symmetric.

In order to get familiar with it all, I have written a very humble script, which should create two copies of the image and flip one of them horizontally.

But already I encounter a problem: It seems to safe the pictures and layers and does not renew them if I apply the script to a new image. Only if I restart GIMP, it renews them. Could somebody please tell me, how I delete the buffer or tell it to overwrite the image/drawable?

And if someone could already tell me the names of the procedures to only copy and flip a selected part of an image and to insert it in a defined place of the new drawable, so I can already try a bit. At least I hope that procedures like this exist...

Thank you so much!
Cheers!
Kat



Here is my current script:


(define (script-fu-two-faces img drw)
  (let* (
        (drawable-width (car (gimp-drawable-width drw)))
        (halfdrawable-width (* drawable-width 0.5))
        (drawable-height (car (gimp-drawable-height drw)))
        (leftimage (car (gimp-image-new drawable-width drawable-height RGB)))
        (leftlayer (car (gimp-layer-new leftimage drawable-width drawable-height 0 "tfl" 100 0)))
        (rightimage (car (gimp-image-new drawable-width drawable-height RGB)))
        (rightlayer (car (gimp-layer-new rightimage drawable-width drawable-height 0 "tfr" 100 0)))
        )

        
        (gimp-image-insert-layer leftimage leftlayer 0 0)
        (gimp-drawable-fill leftlayer WHITE-FILL)
        (gimp-display-new leftimage)
        (gimp-image-insert-layer rightimage rightlayer 0 0)
        (gimp-drawable-fill rightlayer WHITE-FILL)
        (gimp-display-new rightimage)



        (gimp-edit-named-copy drw "tobepastedleft")
        (gimp-edit-named-paste leftlayer "tobepastedleft" TRUE)
        (gimp-displays-flush)


        (gimp-item-transform-flip drw halfdrawable-width 0 halfdrawable-width drawable-height)

        (gimp-edit-named-copy drw "tobepastedright")
        (gimp-edit-named-paste rightlayer "tobepastedright" TRUE)
        (gimp-displays-flush)

        )
        )


(script-fu-register "script-fu-two-faces"
  "Two faces..."
  "Creates an image from left side of the face"
  "K.Imai"
  "K.Imai"
  "2017"
  ""
  SF-IMAGE      "Image"             0
  SF-DRAWABLE   "Drawable to apply" 0
)

(script-fu-menu-register "script-fu-two-faces" "<Image>")

Print this item

  How can i make a picture like this?
Posted by: Rollie - 08-06-2017, 11:42 AM - Forum: General questions - Replies (6)

I already have a clothing picture but its the design and lighting around it that i can't seem to create. If anyone has any idea i'd greatly appreciate it.



Attached Files Image(s)
   
Print this item

Smile Sketch
Posted by: SenlinOS - 08-06-2017, 10:37 AM - Forum: Gallery - Replies (2)

GIMP 2.9.5
   

Print this item

  Gimp 2.9.5 and RAW files
Posted by: rich2005 - 08-06-2017, 09:03 AM - Forum: Gimp 2.10 - No Replies

Ouch...

   

Although I do not take many RAW photographs, I do like the NuFraw Gimp plugin, which works (for me). No longer it seems.

Not keen on Darktable which tries to take over everything. RawTherapee is good, I could go that way. Fortunately the standalone NuFraw works, not quite as convenient as the plugin but fires off a 16 bit image into Gimp 2.9.5. Just need to set up the correct path in NuFraw configuration.

Print this item

  Creating heightmap
Posted by: grit - 08-05-2017, 05:39 PM - Forum: General questions - Replies (4)

When creating heightmap I need that central black areas become sharpened black and central white areas sharpened white. Between black and white areas there shold be a soft grey falloff so that I got smooth transitions.

Gaussian blur does smooth falloff but it dilutes black and white areas into grey.
Is there a way to maintain B & W and get smooth grey falloff in between B & W? 
I tried G'MIC varois smooth options but didn't get what I want.



Attached Files Thumbnail(s)
   
Print this item

  Gimp and Gimp-Edge PPAs are moving
Posted by: Ofnuts - 08-04-2017, 09:29 PM - Forum: Linux and other Unixen - Replies (6)

People that use Gimp under Ubuntu can add a PPA to their software sources, so that Gimp is updated from it instead of being non-updated from the repos. The people behind the PPA have sent a notice that the PPA is moving:


Quote:We're moving!

Old addresses: https://launchpad.net/~otto-kesselgulasch/gimp and https://launchpad.net/~otto-kesselgulasch/gimp-edge

New addresses: https://launchpad.net/~otto-meier/gimp and https://launchpad.net/~otto-meier/gimp-edge

You are welcome in order to build the best Gimp stack packages ever.

Print this item

  Late binding / COM for opening an image into GIMP?
Posted by: i73 - 08-04-2017, 05:41 PM - Forum: Extending the GIMP - Replies (3)

Hey guys, I'm looking for a way to use .net to open up a application in Gimp,

Something like:


Code:
dynamic app= Activator.CreateInstance(Type.GetTypeFromProgID("Gimp.Application", true));
app.Load("D:\a.png");

Print this item