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

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 4,783
» Latest member: ProstaPeak
» Forum threads: 7,596
» Forum posts: 41,400

Full Statistics

Latest Threads
files missing after insta...
Forum: Older Gimp versions (2.8, 2.6....)
Last Post: rich2005
42 minutes ago
» Replies: 1
» Views: 42
Is there any version wher...
Forum: Older Gimp versions (2.8, 2.6....)
Last Post: rich2005
9 hours ago
» Replies: 1
» Views: 257
How do I uninstall GIMP 3...
Forum: Linux and other Unixen
Last Post: Ofnuts
10 hours ago
» Replies: 1
» Views: 119
AI Gimp Plugins
Forum: Watercooler
Last Post: merlilderman
Yesterday, 04:16 PM
» Replies: 21
» Views: 68,370
How to make a watermark o...
Forum: General questions
Last Post: kyolim
09-13-2025, 10:05 PM
» Replies: 5
» Views: 14,234
Linux command that does e...
Forum: Other graphics software
Last Post: rich2005
09-13-2025, 06:06 PM
» Replies: 1
» Views: 507
reliable Gimp 2.10.38 dow...
Forum: Older Gimp versions (2.8, 2.6....)
Last Post: denzjos
09-13-2025, 05:20 PM
» Replies: 2
» Views: 415
Batch Color Saturation
Forum: Extending the GIMP
Last Post: rich2005
09-13-2025, 07:53 AM
» Replies: 15
» Views: 12,099
Photo play-time
Forum: Gallery
Last Post: Ofnuts
09-13-2025, 07:32 AM
» Replies: 24
» Views: 21,940
BIMP plugin for GIMP 3.10
Forum: Extending the GIMP
Last Post: firefly
09-12-2025, 11:53 PM
» Replies: 2
» Views: 768

 
  Color picker
Posted by: denzjos - 09-17-2023, 08:32 AM - Forum: Other graphics software - No Replies

ColorMania, a color picker (freeware, also portable) with color conversion for HTML Hex, Photoshop,  Android Tranparent, RGB % Values, etc...

https://www.blacksunsoftware.com/colormania.html

   

Print this item

  how to PERMANENTLY disable "recently used"
Posted by: denno - 09-17-2023, 03:35 AM - Forum: Windows - Replies (2)

What it says!

I have turned up a 2015 thread on emptying the recently used list; but it fills up again.
I'd like the program not to keep that list at all.  Also seems the list on the side of the working screen and the list that is a category under "open" in the "file" drop-down are separate things, programmatically.

TIA

Print this item

  Flattening Image and keeping transparency.
Posted by: Tirisilex - 09-16-2023, 01:30 AM - Forum: Gimp 2.99 & Gimp 3.0 - Replies (1)

Every time I flatten my transparent image it puts a white background onto it. How can I flatten an image without this problem?

Print this item

  Remembering a series of color adjustments
Posted by: zeuspaul - 09-15-2023, 07:14 AM - Forum: General questions - Replies (2)

Is there a way to remember a series of color adjustments?  If I have a bunch of like images is there a way to apply the same adjustments to all?  If I adjust contrast, saturation, sharpness and curves to one image is there a way to apply the same adjustments to all?  I know I can select previous on an individual basis but I have to do that one by one.

Is this something that can be done with a script? or ?  Can Gimp be programed to execute contrast/previous, saturation/ previous, curves/previous sharpness/previous such that one command is executed for the group of adjustments?

Print this item

  Color negative to digital print
Posted by: sssail3 - 09-14-2023, 08:12 PM - Forum: General questions - Replies (5)

I have a few color negative  I would like to make pictures on computer, They are older color negative from a long time ago .My wife passed away Angel I found these and a few of them are of her and I would love to see them. Is there a way to do this on the computer? they are 35 mm negatives . Thanks in advance for any help

Print this item

  Free select tool
Posted by: silverbirch2003 - 09-14-2023, 05:52 PM - Forum: General questions - Replies (13)

was using it...   started at  the  top  of  head  and  worked  way  down... reached the  thigh  and  the dots  suddenly  connected

started  again...  got a little  further  but  same  thing  happened
wasted a lot of  time .

went on to the  scissors  and  got the  job  done...  but  sometimes the line
gets a little bit  wavey .... !

Just  wondering is  there any way I  could  adjust  the  free select  tool
to make it  more  stable  ?
thanks for help or  comment .

Print this item

  apply a screen with color from gradiant according to value
Posted by: jacques_duflos - 09-13-2023, 10:39 PM - Forum: General questions - Replies (1)

Hi there,
I would like to apply a filter to a b&w image to color it. It has mostly light grey from the paper texture, and dark grey from the ink. I would like to apply different color to those pixels. I thought it would be very straight forward with some color tool, but after trying I can't find the way. Any idea ?

A visual explanation of what I want :
   
   

Print this item

  can't use ctrl + alt + scroll wheel to change brush size
Posted by: akirapink - 09-13-2023, 04:20 PM - Forum: Gimp 2.99 & Gimp 3.0 - Replies (10)

i recently had to reinstall linux mint, and upon reinstalling GIMP 2.99, i discover that i can't use these keyboard? shortcuts anymore
and i can't assign them either, because the scroll wheel doesn't count as a key
what do i do to get those back?

the shortcuts in question being:
- ctrl + alt + scroll wheel: change brush size
- alt + scroll wheel: change brush opacity

Print this item

  Drawing line in Script-Fu
Posted by: Strzegol - 09-13-2023, 12:25 AM - Forum: Scripting questions - Replies (5)

Hello. Still another newbie question. Why this script don't work? (GIMP 2.99 but this is so basic stuff that this should don't matter)

EDIT: I checked documentations for hours and also mined examples shipped with GIMP but there are no examples that use gimp-paintbrush-default and oddly I don't found anything in documentation about creation of scripts that draw something on existing images despite this kind of scripts seems to be most common)

EDIT: It should draw line from cornet to pixel at x=100 y=100 using current brush.

Code:
(define (script-fu-linedraw drawable orientation)
    (gimp-paintbrush-default drawable 2 #(0 0 100 100))

)

(script-fu-register
    "script-fu-linedraw"
    "Linedraw"
    "Try draw a line in GIMP"
    "Strzegol"
    "copyright 2023 Strzegol"
    "September 12,2023"
    ""
    SF-DRAWABLE "Drawable" 0

)
(script-fu-menu-register "script-fu-linedraw"
    "<Image>/Tools")

Second stuff: Why refreshing scripts remove them from menu?

Print this item

  For the local Geordie(s)
Posted by: Ofnuts - 09-12-2023, 08:14 PM - Forum: Watercooler - Replies (3)

https://newsthump.com/2023/09/12/googles...geordie-2/

Print this item