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

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 4,578
» Latest member: ДианаJak
» Forum threads: 7,452
» Forum posts: 40,732

Full Statistics

Latest Threads
Macroglossum stellatarum
Forum: Watercooler
Last Post: denzjos
1 minute ago
» Replies: 2
» Views: 75
GIMP 3.04 opens with wind...
Forum: Windows
Last Post: SteveH
27 minutes ago
» Replies: 1
» Views: 95
Missing script-fu "refres...
Forum: Gimp 2.99 & Gimp 3.0
Last Post: Frenchie
1 hour ago
» Replies: 11
» Views: 333
processes in Whitelist
Forum: OSX
Last Post: rich2005
Yesterday, 09:45 AM
» Replies: 5
» Views: 186
Digikam: photo management...
Forum: Other graphics software
Last Post: denzjos
Yesterday, 06:53 AM
» Replies: 7
» Views: 4,592
AIGoR - Artificial Image ...
Forum: Other graphics software
Last Post: rich2005
07-01-2025, 12:12 PM
» Replies: 10
» Views: 3,124
Can't see GIMP windows
Forum: Gimp 2.99 & Gimp 3.0
Last Post: Tankred
07-01-2025, 11:48 AM
» Replies: 3
» Views: 258
Windows save
Forum: General questions
Last Post: sallyanne
07-01-2025, 06:27 AM
» Replies: 3
» Views: 346
Trying to append part of ...
Forum: General questions
Last Post: Denarius
06-30-2025, 12:26 PM
» Replies: 5
» Views: 361
clone tool
Forum: General questions
Last Post: sallyanne
06-30-2025, 12:38 AM
» Replies: 6
» Views: 416

 
  COPYing Layers
Posted by: gaystan - 12-21-2022, 12:02 AM - Forum: General questions - Replies (2)

Hi everybody :

  I'm running GIMP 2.10......Windows 10 64-bit.
  I have a "drawing" of two leaves, joined on the bottom. This is on the background 
  layer.  How do I COPY this to a new layer (with the purpose of rotating /flipping the
  copy ?  And then, using OPACITY, to adjust the two layers into the correct 
  position. After that, use the the FLATTEN command.
  Advice ?
  garystan
document.oncontextmenu = null; document.body.onpaste = null; document.body.onselectstart = null; document.onselectstart = null; document.ondragstart = null; document.body.oncut = null; document.onmousedown = null; document.body.oncontextmenu = null; document.body.oncopy = null; document.body.ondragstart = null; document.body.onmousedown = null;



Attached Files Thumbnail(s)
   
Print this item

  Best way to remove glare
Posted by: Muzician - 12-20-2022, 05:25 AM - Forum: General questions - Replies (9)

I've got a photo of a painting that has an irregularly shaped glare reflection. I've been getting decent results using the Free Select tool and mild stages of brightness/contrast reduction on progressively smaller areas of the image to avoid an obvious border where the filter has been applied but wondering if there's a better, quicker more effective way to do it. 

Thanks!

Print this item

  Texture for Blender
Posted by: meetdilip - 12-20-2022, 03:07 AM - Forum: Other graphics software - No Replies

Hi, I am trying to create my own PBR textures for Blender. The below link says a lot of things about it ( some of them I do not understand )

https://docs.ambientcg.com/books/creating-pbr-materials

In short, a PBR texture inputs colour, roughness, displacement and normal PNGs or JPGs as seen below

[Image: zyKerHW.png]

Wondering whether I can create them using GIMP?

I took a photo on my mobile of a wooden material and applied it as colour, which works. Then I tried roughness and displacement. Roughness using grey scale + Bump map in GIMP and displacement using filter > map > displace.

Both roughness and displacement JPG worked but with little detail added. I guess, my base photo is not very rich in detail (maybe I am wrong because I used a 108MP camera ).

It would be nice to know if such actions can be performed using GIMP.


Looks like GIMP can do it. This is after using Map > Bump and Map > Displace through Filter

[Image: W7PfWmV.png]

Print this item

  At least it was not England v Argentina :)
Posted by: Tas_mania - 12-19-2022, 06:50 AM - Forum: Watercooler - Replies (2)

Commiserations to France for coming so close. Apparently the French were well behaved due to the weather and because they are well behaved.

Print this item

  Recommended workflow to retain maximum quality of an image for printing
Posted by: Muzician - 12-19-2022, 12:06 AM - Forum: General questions - Replies (9)

Starting with a .jpg taken by a cousin with an iPhone of a painting done by a relative. 

Properties of the original .jpg I was sent per Gimp are: 

42" x 56" 
72 ppi
3.7 mb
RGB

It's a pic in sharp focus of the painting in a frame. The plan is to crop out just the painting, straighten it and bring it down to the original size of 23.5" x 29.25" and have it printed with some border around it for framing.

What do you recommend as the optimal workflow to go from the original to a format to have a print made of it and what method of printing do you recommend? Office Depot does prints that size as posters but they use a variety of inkjet printer and I wonder if there's something better that an actual print shop might use. The goal is to retain as much of the sharpness and detail as possible.

What DPI should I use for best results? I gather most places like .pdf as a file to print from? Is there a particular stock you recommend?

Thanks!

Print this item

  Tip of the day
Posted by: ijeniik - 12-18-2022, 05:45 PM - Forum: General questions - Replies (2)

Hello people
it is possible to show Tip of the day after each start of gimp? Huh

Print this item

  The "look" of gradients
Posted by: Ofnuts - 12-18-2022, 10:09 AM - Forum: Tutorials and tips - Replies (4)

Out of curiosity, I made a graph to see the effect of the "blending function" in a gradient, and how it behaves if the midpoint is changed.

   

The "50" gradients have the default midpoint position, and the "75" one have the midpoint dragged to 75% of the range.

To replicate, adapt and run this code in the Python console, and copy/paste the result to a CSV that you feed to your favorite spreadsheet application.

Code:
def valueAt(layer,x,y):
    _,rgb=pdb.gimp_drawable_get_pixel(layer,x,y)
    return sum(rgb[:3])/3.

def dumpLayer(layer):
    y=layer.height/2
    pts=['%.1f' % valueAt(layer,x,y) for x in range(layer.width)]
    print '"%s",%s' % (layer.name, ','.join(pts))

def dumpImage(image):
    for layer in [l for l in image.layers if l.visible]:
        dumpLayer(layer)
        

image=gimp.image_list()[0]
dumpImage(image)

Source XCF also attached.

Edit: some code updates (works with alpha channel, and dumps only visible layers)



Attached Files
.xcf   Gradients.xcf (Size: 384.53 KB / Downloads: 486)
Print this item

  Drawing lines
Posted by: pinnerite - 12-16-2022, 10:22 AM - Forum: General questions - Replies (1)

I seem to have lost  drawing toolbar.
How can I recover it?

Print this item

  Unhidden docks take up whole screen
Posted by: pinnerite - 12-16-2022, 10:20 AM - Forum: General questions - Replies (2)

This is in 2.10.18.
Since this version was installed. Some functions are behaving unexpectedly.
At the moment I am looking at "Pencil" and it occupies the whole screen.
How can I reduce it?

TIA

Print this item

  Tools not working
Posted by: ScottM - 12-16-2022, 04:55 AM - Forum: General questions - Replies (3)

Hello,
For months now various tools and functions have not been working properly or at all in Gimp. The select by colour often makes a selection, but, for example, I can't invert it and delete or change the background, or the selection itself. Once I've made a selection by colour, I have tried the manual command as well as clicking the option in the EDIT tab to fill with forground colour, but nothing happens. There are other tools and functions not working either. I'm stuck. Can anyone help? I have Gimp GIMP 2.10.32 currently. I use a Mac Monteray. 12.6.1

Print this item