Welcome, Guest |
You have to register before you can post on our site.
|
Latest Threads |
cannot find plu-gins in g...
Forum: General questions
Last Post: πk2
8 hours ago
» Replies: 3
» Views: 228
|
ora format... it really w...
Forum: General questions
Last Post: mrkid
Yesterday, 10:57 PM
» Replies: 3
» Views: 262
|
.pcd files issue?
Forum: OSX
Last Post: T1-Survivor
Yesterday, 09:45 PM
» Replies: 3
» Views: 489
|
Simplifying a path
Forum: Extending the GIMP
Last Post: Ofnuts
Yesterday, 03:17 PM
» Replies: 40
» Views: 35,531
|
"Gimp 2.99 & Gimp 3.0" fo...
Forum: Gimp-Forum.net
Last Post: Ofnuts
Yesterday, 03:12 PM
» Replies: 0
» Views: 219
|
Coincidence or not, that ...
Forum: Watercooler
Last Post: Krikor
Yesterday, 12:57 PM
» Replies: 2
» Views: 1,250
|
How do you make text circ...
Forum: General questions
Last Post: Krikor
Yesterday, 12:40 PM
» Replies: 13
» Views: 3,893
|
files missing after insta...
Forum: Older Gimp versions (2.8, 2.6....)
Last Post: denzjos
09-16-2025, 03:58 PM
» Replies: 4
» Views: 612
|
Is there any version wher...
Forum: Older Gimp versions (2.8, 2.6....)
Last Post: HavingTooMuchFun
09-16-2025, 08:24 AM
» Replies: 2
» Views: 715
|
How do I uninstall GIMP 3...
Forum: Linux and other Unixen
Last Post: Ofnuts
09-15-2025, 07:02 AM
» Replies: 1
» Views: 517
|
|
|
Jigsaw animation |
Posted by: Ofnuts - 04-20-2020, 12:02 PM - Forum: Gallery
- No Replies
|
 |
A quick jigsaw animation I did with some existing scripts
- Create a jigsaw pattern apth with ofn-jigsaw
- Edit>Stroke path on a transparent layer (4px width minimum)
- Layer>Transparency>Alpha to selection then discard the layer
- Move to the image layer, and [Delete] t make the jigsaw transparent
- Extract the pieces to layers with ofn-extract-objects
- Add a background, export to animated GIF (all layers to Combine) and serve hot
|
|
|
Exporting Jigsaw to Articulate. |
Posted by: K.Howard - 04-20-2020, 09:05 AM - Forum: General questions
- Replies (3)
|
 |
Hi
I am very new to GIMP. I have followed a tutorial to create a jigsaw in GIMP. I have completed the jigsaw and now would like to export it into Articulate 360.
My goal is that as the learners complete sections they uncover puzzle pieces and at the end of the course they get to complete the puzzle. Please can you advise how I export my jigsaw out of GIMP. Is there a particuar format I need to use?
Thank you
Kerry
|
|
|
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"
""
)
|
|
|
|