It is currently Mon Sep 14, 2026 9:41 am


All times are UTC - 5 hours [ DST ]



Post new topic Reply to topic  [ 31 posts ]  Go to page Previous  1, 2
Author Message
 Post subject: Re: Short Animations with Gmic
PostPosted: Sun Oct 24, 2010 7:27 pm  (#21) 
Offline
GimpChat Member
User avatar

Joined: Jul 04, 2010
Posts: 2253
Location: Retired Moderator Slowly Returning to the Living.
I just overwrote the .apng drivers and fixed my animated png issue! Sweeeet!

_________________
Artists aren't crazy! We're eccentric! ~G.M. Ross

Image

My Sigs = My Photos
Check out my work at http://www.flickr.com/photos/photomastergreg.


Top
 Post subject: Re: Short Animations with Gmic
PostPosted: Sun Oct 24, 2010 9:03 pm  (#22) 
Offline
Retired Staff
User avatar

Joined: May 22, 2008
Posts: 6946
Location: Somewhere in GIMP
Messing around in the layer filters.

Image

Image

Image

_________________
Image
World War IV will be fought with sticks and stones. - Albert Einstein


Top
 Post subject: Re: Short Animations with Gmic
PostPosted: Mon Oct 25, 2010 10:57 am  (#23) 
Offline
GimpChat Member

Joined: Apr 12, 2010
Posts: 5870
i like mostly the last has a sort of submarinne effect

_________________
My 3D Gallery on Deviantart http://photocomix2.deviantart.com/
Main gallery http://www.flickriver.com/photos/photocomix-mandala/
Mandala and simmetry http://www.flickriver.com/photos/photocomix_mandala/

Image

Mrs Wilbress


Top
 Post subject: Re: Short Animations with Gmic
PostPosted: Mon Oct 25, 2010 11:36 am  (#24) 
Offline
Retired Staff
User avatar

Joined: May 22, 2008
Posts: 6946
Location: Somewhere in GIMP
I like the last one best. None of those are final copies of anything. I was just playing with the tutorial and the filters.

This one is done with a bi-color gradient. Could make some nice underwater scenes with it. It's G'MIC > Light & Shadow > Light patch. You end up with a lot of semi-transparency so you need to add a bg to the layers or semi-flatten (that would be nasty) the layers.

Image

_________________
Image
World War IV will be fought with sticks and stones. - Albert Einstein


Top
 Post subject: Re: Short Animations with Gmic
PostPosted: Wed May 25, 2011 2:22 am  (#25) 
Offline
Script Coder
User avatar

Joined: Feb 18, 2011
Posts: 4826
Location: Bendigo Vic. Australia
If I input (plug-in-gmic run-mode image drawable input command)what can I use for the command part to call the GMIC 'Fuzzy Frame' filter.

_________________
Image
No matter how much you push the envelope, it'll still be stationery.


Top
 Post subject: Re: Short Animations with Gmic
PostPosted: Wed May 25, 2011 8:09 am  (#26) 
Offline
Global Moderator
User avatar

Joined: May 16, 2010
Posts: 16173
Thanks PC very nice! :)

_________________
Image


Top
 Post subject: Re: Short Animations with Gmic
PostPosted: Wed May 25, 2011 11:39 am  (#27) 
Offline
GimpChat Member

Joined: Apr 12, 2010
Posts: 5870
do you want call a gmic filter from a script fu ?
this script is a sort of template that David wrote as a example

;;
;;   File        : gmic_in_script.scm
;;                 ( Scheme script for GIMP )
;;
;;   Description : Show how to call G'MIC commands from a GIMP script.
;;                 ( http://gmic.sourceforge.net )
;;
;;   Copyright   : David Tschumperle
;;                 ( http://www.greyc.ensicaen.fr/~dtschump/ )
;;
;;   License     : CeCILL v2.0
;;                 ( http://www.cecill.info/licences/Licence_CeCILL_V2-en.html )
;;
;;   This software is governed by the CeCILL  license under French law and
;;   abiding by the rules of distribution of free software.  You can  use,
;;   modify and/ or redistribute the software under the terms of the CeCILL
;;   license as circulated by CEA, CNRS and INRIA at the following URL
;;   "http://www.cecill.info".
;;
;;   As a counterpart to the access to the source code and  rights to copy,
;;   modify and redistribute granted by the license, users are provided only
;;   with a limited warranty  and the software's author,  the holder of the
;;   economic rights,  and the successive licensors  have only  limited
;;   liability.
;;
;;   In this respect, the user's attention is drawn to the risks associated
;;   with loading,  using,  modifying and/or developing or reproducing the
;;   software by the user in light of its specific status of free software,
;;   that may mean  that it is complicated to manipulate,  and  that  also
;;   therefore means  that it is reserved for developers  and  experienced
;;   professionals having in-depth computer knowledge. Users are therefore
;;   encouraged to load and test the software's suitability as regards their
;;   requirements in conditions enabling the security of their systems and/or
;;   data to be ensured and,  more generally, to use and operate it in the
;;   same conditions as regards security.
;;
;;   The fact that you are presently reading this means that you have had
;;   knowledge of the CeCILL license and that you accept its terms.
;;

(define   (script-with-gmic img drawable x y z)

  ;; Start undo group.
  (gimp-image-undo-group-start img)

  (let* (
         (copy-layer (car (gimp-layer-copy drawable TRUE)))
         )

    ;; Add a copy of the layer to the image.
    (gimp-image-add-layer img copy-layer -1)

    ;; Render a 3D mapped cube from the active layer, using G'MIC.
    (plug-in-gmic 1 img drawable 1
                  (string-append
                   "-v - " ; To have a silent output. Remove it to display errors from the G'MIC interpreter on stderr.
                   "-gimp_imageobject3d 1,{w},{h},0.5,"
                   (number->string x) ","
                   (number->string y) ","
                   (number->string z) ",45,0,0,-100,0.5,0.7,4"
                   ))

    ;; Merge two layers together, using the G'MIC 'edges' mode (this layer mode does not exist by default in GIMP).
    (plug-in-gmic 1 img drawable 2 "-v - -compose_edges 1")

    )

  ;; Flush display.
  (gimp-displays-flush)

  ;; End undo group.
  (gimp-image-undo-group-end img)
  )

(script-fu-register "script-with-gmic"
                    _"<Image>/Filters/G'MIC Script test..."
                    "Show how to call G'MIC from a GIMP script"
                    "David Tschumperlé"
                    "David Tschumperlé"
                    "October 2009"
                    "*"
                    SF-IMAGE      "Image"      0
                    SF-DRAWABLE         "Drawable"      0
                    SF-ADJUSTMENT   _"X-Angle"   '(57  0 360  1 2 0 0)
                    SF-ADJUSTMENT   _"Y-Angle"   '(41  0 360  1 2 0 0)
                    SF-ADJUSTMENT   _"Z-Angle"   '(21  0 360  1 2 0 0)
                    )


here you may found other 2 recent scripts that use gmic

http://www.aljacom.com/~gmic/Script-Fu_ ... _GMIC.html

http://www.aljacom.com/~gmic/script-fu- ... terns.html

_________________
My 3D Gallery on Deviantart http://photocomix2.deviantart.com/
Main gallery http://www.flickriver.com/photos/photocomix-mandala/
Mandala and simmetry http://www.flickriver.com/photos/photocomix_mandala/

Image

Mrs Wilbress


Top
 Post subject: Re: Short Animations with Gmic
PostPosted: Tue Jun 09, 2015 3:34 pm  (#28) 
Offline
GimpChat Member
User avatar

Joined: Jun 08, 2015
Posts: 36
:gimp


Attachments:
0_d289f_a6a79b27_orig.gif
0_d289f_a6a79b27_orig.gif [ 5.09 MiB | Viewed 2202 times ]
0_a4e7f_fa1d4970_orig.gif
0_a4e7f_fa1d4970_orig.gif [ 429.6 KiB | Viewed 2202 times ]
0_a4335_b608ee50_orig.gif
0_a4335_b608ee50_orig.gif [ 317.96 KiB | Viewed 2202 times ]

_________________
Image
Top
 Post subject: Re: Short Animations with Gmic
PostPosted: Wed Jun 10, 2015 6:14 am  (#29) 
Offline
GimpChat Member
User avatar

Joined: Jan 03, 2011
Posts: 1656
Very cool skritnaea ! Well done !


Top
 Post subject: Re: Short Animations with Gmic
PostPosted: Sat Jul 18, 2015 4:25 am  (#30) 
Offline
GimpChat Member
User avatar

Joined: Jun 08, 2015
Posts: 36
Ronounours :tyspin


Attachments:
summer.gif
summer.gif [ 3.3 MiB | Viewed 2120 times ]

_________________
Image
Top
 Post subject: Re: Short Animations with Gmic
PostPosted: Sat Jul 18, 2015 6:30 am  (#31) 
Offline
Administrator
User avatar

Joined: Aug 10, 2012
Posts: 14204
Location: Native to NYC living in Arizona, Gimp 2.8 - 3.0, Win 11 PC.
skritnaea wrote:
Ronounours :tyspin

Cool looking effect.

_________________
Image
"A wise man learns more from a foolish question than a fool can learn from a wise answer"
Image


Top
Post new topic Reply to topic  [ 31 posts ]  Go to page Previous  1, 2

All times are UTC - 5 hours [ DST ]



* Login  



Powered by phpBB3 © phpBB Group