| Welcome, Guest |
You have to register before you can post on our site.
|
| Forum Statistics |
» Members: 5,149
» Latest member: VeloSteve
» Forum threads: 7,822
» Forum posts: 42,475
Full Statistics
|
| Latest Threads |
Monitoring a pixel's RGB ...
Forum: General questions
Last Post: BuddyEvoke
1 hour ago
» Replies: 3
» Views: 164
|
Monochrome png exports as...
Forum: General questions
Last Post: rich2005
Yesterday, 09:51 PM
» Replies: 2
» Views: 162
|
re-coloured pixels hide c...
Forum: Extending the GIMP
Last Post: programmer_ceds
Yesterday, 01:04 PM
» Replies: 3
» Views: 251
|
Wavelet-decompose doing m...
Forum: General questions
Last Post: JohnWilliams
02-26-2026, 07:46 AM
» Replies: 9
» Views: 5,311
|
Smudge tool not working
Forum: General questions
Last Post: sallyanne
02-26-2026, 12:51 AM
» Replies: 3
» Views: 281
|
Thank you for Gimp
Forum: Watercooler
Last Post: Sampollyt
02-25-2026, 12:38 PM
» Replies: 0
» Views: 139
|
RapidRAW
Forum: Other graphics software
Last Post: denzjos
02-25-2026, 07:40 AM
» Replies: 3
» Views: 1,054
|
Hiding Unwanted System Fo...
Forum: Extending the GIMP
Last Post: rich2005
02-24-2026, 10:05 AM
» Replies: 1
» Views: 254
|
Version Issue
Forum: General questions
Last Post: rich2005
02-23-2026, 09:40 PM
» Replies: 1
» Views: 294
|
GIMP 3 Python Enums: Defi...
Forum: Extending the GIMP
Last Post: MrsP-from-C
02-23-2026, 08:27 PM
» Replies: 6
» Views: 460
|
|
|
| Some forum stats |
|
Posted by: Ofnuts - 04-19-2020, 08:54 AM - Forum: Gimp-Forum.net
- Replies (1)
|
 |
Posts origin by country:
United Kingdom: 4656 United States: 3178 France: 3112
Germany: 1029 South Africa: 842 Canada: 543
Belgium: 428 Australia: 369 Italy: 289
Spain: 238 Brazil: 200 India: 178
Czech Republic: 97 Croatia: 96 Netherlands: 96
Hungary: 81 Sweden: 76 Poland: 73
Finland: 69 Israel: 67 Switzerland: 57
Hong Kong: 55 Egypt: 54 Romania: 43
New Zealand: 39 Denmark: 38 Norway: 37
Barbados: 33 Greece: 33 Russia: 32
Malaysia: 31 China: 29 Serbia: 25
Taiwan: 25 Mexico: 18 Austria: 17
Philippines: 16 Kuwait: 15 Slovenia: 15
Venezuela: 13 Argentina: 12 Ireland: 12
Slovakia: 12 Japan: 11 Singapore: 11
Morocco: 10 Portugal: 10 Turkey: 10
Ukraine: 10 Jordan: 9 Bangladesh: 8
Dominican Republic: 8 Lithuania: 8 Vietnam: 8
Bulgaria: 7 Chile: 7 Costa Rica: 7
Indonesia: 7 Puerto Rico: 6 Trinidad and Tobago: 6
Moldova: 5 Thailand: 5 Ecuador: 4
Pakistan: 4 Bahrain: 3 Luxembourg: 3
Montenegro: 3 Namibia: 3 Bosnia and Herzegovina: 2
Cambodia: 2 Cayman Islands: 2 Colombia: 2
Estonia: 2 Iceland: 2 Isle of Man: 2
Macao: 2 Peru: 2 Sri Lanka: 2
Tunisia: 2 Uruguay: 2 Cameroon: 1
Cyprus: 1 Guam: 1 Iran: 1
Malta: 1 United Arab Emirates: 1
|
|
|
| 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.
|
|
|
|