Welcome, Guest |
You have to register before you can post on our site.
|
Latest Threads |
How to make a watermark o...
Forum: General questions
Last Post: kyolim
Yesterday, 10:05 PM
» Replies: 5
» Views: 13,966
|
Linux command that does e...
Forum: Other graphics software
Last Post: rich2005
Yesterday, 06:06 PM
» Replies: 1
» Views: 315
|
reliable Gimp 2.10.38 dow...
Forum: Older Gimp versions (2.8, 2.6....)
Last Post: denzjos
Yesterday, 05:20 PM
» Replies: 2
» Views: 233
|
Batch Color Saturation
Forum: Extending the GIMP
Last Post: rich2005
Yesterday, 07:53 AM
» Replies: 15
» Views: 11,852
|
Photo play-time
Forum: Gallery
Last Post: Ofnuts
Yesterday, 07:32 AM
» Replies: 24
» Views: 21,696
|
BIMP plugin for GIMP 3.10
Forum: Extending the GIMP
Last Post: firefly
09-12-2025, 11:53 PM
» Replies: 2
» Views: 605
|
pl_stroke_arrows GIMP 3.0...
Forum: Extending the GIMP
Last Post: Scallact
09-12-2025, 04:03 PM
» Replies: 0
» Views: 265
|
How do you make text circ...
Forum: General questions
Last Post: rich2005
09-12-2025, 07:18 AM
» Replies: 12
» Views: 3,339
|
New Install, Black Screen...
Forum: OSX
Last Post: akhrameev
09-11-2025, 02:32 PM
» Replies: 3
» Views: 3,006
|
Trouble changing backgrou...
Forum: General questions
Last Post: tomatoSauce23
09-11-2025, 12:50 PM
» Replies: 6
» Views: 1,511
|
|
|
how do I feather the cut when I cut out a path? |
Posted by: petedecember - 04-20-2020, 06:48 PM - Forum: General questions
- Replies (3)
|
 |
Greetings folks--
When I cut out something from a picture, say a person, I want to feather the edges so it looks a little more natural. Does anyone have any idea how to do that? Currently I am using a path to do the cut, although I would be open to other suggestions.
Thanks in advance for you help.
|
|
|
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"
""
)
|
|
|
|