| Welcome, Guest |
You have to register before you can post on our site.
|
| Latest Threads |
Beginner question - setti...
Forum: General questions
Last Post: nmw01223
1 hour ago
» Replies: 4
» Views: 591
|
Rotating a layer against ...
Forum: General questions
Last Post: NickPearl
1 hour ago
» Replies: 4
» Views: 669
|
Gimp-Forum.net has not be...
Forum: Gimp-Forum.net
Last Post: Tas_mania
2 hours ago
» Replies: 4
» Views: 580
|
Thank you for Gimp
Forum: Watercooler
Last Post: denzjos
3 hours ago
» Replies: 1
» Views: 1,328
|
Extracting a "Dotted Netw...
Forum: General questions
Last Post: rich2005
04-20-2026, 07:16 PM
» Replies: 11
» Views: 986
|
How to correct Gimp save ...
Forum: General questions
Last Post: Christophe.Maso@gmail.com
04-20-2026, 06:35 PM
» Replies: 2
» Views: 726
|
Batcher and simple animat...
Forum: Tutorials and tips
Last Post: MrsP-from-C
04-19-2026, 07:16 AM
» Replies: 2
» Views: 1,000
|
Background - Foreground -...
Forum: General questions
Last Post: saint_m
04-16-2026, 04:28 PM
» Replies: 12
» Views: 1,607
|
2.10.38---Dock sizes and ...
Forum: Windows
Last Post: IndiePubber
04-15-2026, 06:21 PM
» Replies: 2
» Views: 1,014
|
Scanner menu missing
Forum: General questions
Last Post: CmykStudent_
04-15-2026, 11:26 AM
» Replies: 9
» Views: 1,322
|
|
|
| Error: Not enough arguments? |
|
Posted by: Pocholo - 04-18-2020, 03:52 PM - Forum: Extending the GIMP
- Replies (7)
|
 |
I'm trying to self-taught about writing a script-fu script in GIMP and trying to create a simple script, a "New image". When I'm trying to run it it will give me the error "Not enough arguments". What am I missing? Thank you in advanced.
Code:
(define (script-fu-new-image theImage theLayer)
(let* ((theImage (car (gimp-image-new 500 500 RGB)))
(baseLayer (car (gimp-layer-new theImage 500 500 RGB-IMAGE "Wood" 100 LAYER-MODE-NORMAL)))
)
(gimp-image-undo-group-start theImage)
(gimp-image-insert-layer theImage baseLayer 0 0)
(gimp-drawable-fill theLayer FILL-WHITE)
(gimp-display-new theImage)
(gimp-image-undo-group-end theImage)
)
)
(script-fu-register
"script-fu-new-image"
"<Image>/File/Create/New image"
"New image"
"Creates a New image"
"Pocholo"
"Pocholo"
"March 2020"
""
)
|
|
|
| G'MIC for GIMP 2.10.18 not working |
|
Posted by: mortwinder - 04-17-2020, 10:29 AM - Forum: Extending the GIMP
- Replies (1)
|
 |
I have recently installed the new 2.10.18 version of GIMP, but now the G'MIC plugin no longer works. When I launch GIMP, I get pop-ups saying the entry point cannot be found in C:\Program Files\GIMP 2\bin\libgmodule-2.0-0.dil
I noticed that the set up wizard for G'MIC 2.9 does not install the plugin in C:\Program Files, but in a file in C:\Users\[name].
Is this the reason the plugin isn't working?
If so, what is the solution?
Side note - I had been using 2.8 version and G'MIC worked just fine, then updated to GIMP 2.10.6, and faced the same problem but did not pay attention to it then. I need to use the G'MIC plugin now, so if anyone has suggestions I'd be grateful.
|
|
|
| getting rid of 1st copy of GIMP |
|
Posted by: petedecember - 04-16-2020, 09:36 PM - Forum: Linux and other Unixen
- Replies (6)
|
 |
Greetings, folks--
My problem is that I have 2 versions of GIMP installed on my computer (Linux Mint 19.1), 2.10.14 and 2.10.18. I try to get rid of GIMP 2.10.14 and it looks like it is gone entirely, but when I go to install G'mic on GIMP 2.10.18 it brings back 2.10.14 and puts G'mic in that installation! This has happened repeatedly so it is not a fluke. Does anyone have any idea how I can get rid the 2.10.14 but have G'mic installed on the 2.10.18? Thanks so much for your help.
|
|
|
| Equations/Details of the Color Transformations |
|
Posted by: crocis - 04-16-2020, 07:23 PM - Forum: General questions
- Replies (3)
|
 |
Hi All,
I am interested in the color transformations of the tools like brightness-contrast, hue-chroma, hue-saturation, saturation, exposure, color balance, color temperature, ...
Do you know where I can find the details of these tools, in particular the mathematical equations behind them?
Thank you in advance for your help.
Simone
|
|
|
| Brush won't color |
|
Posted by: Alditrus - 04-16-2020, 03:33 AM - Forum: General questions
- Replies (2)
|
 |
I'm trying to create a brush that I can color with. I saved it as a GBR and put it in my brushes folder, but instead of coloring in the foreground color, the brush will only color in black. How can I get it to change color? I'm a little frustrated rn.
|
|
|
|