Share this topic on AskShare this topic on DiggShare this topic on FacebookShare this topic on GoogleShare this topic on TwitterShare this topic on YahooShare this topic on Google buzz

Author Topic: Darth_Gimp's Captain America  (Read 1814 times)

0 Members and 1 Guest are viewing this topic.

Offline Damascus

  • Global Moderator
  • Posts: 1,302
  • Karma: 0
Re: Darth_Gimp's Captain America
« Reply #10 on: February 16, 2008, 12:38:57 AM »
All very nice results...!

Art, love your 2nd version.
And Droz... yeah, it's awesome.

Offline paladin169

  • Member
  • **
  • Posts: 1,601
  • Karma: 0
  • Cookies!
Re: Darth_Gimp's Captain America
« Reply #11 on: March 12, 2008, 01:43:55 PM »
Great tutorial, can't belive i didn't see this before 

« Last Edit: September 17, 2010, 12:50:02 PM by Hi-T3k~HillBilly »
Formerly sponge!


Offline Darth_Gimp

  • Number One
  • *****
  • Posts: 2,833
  • Karma: 0
  • Faith, Folk, Family!
    • lds-jedi.deviantart.com
    • Odinic Rite
Re: Darth_Gimp's Captain America
« Reply #12 on: March 12, 2008, 04:14:31 PM »
Nice one Sponge! Glad you took a moment to try it out!
GimpDome Group: http://gimpdome.deviantart.com/
My DeviantArt: http://lds-jedi.deviantart.com/

There's no worse feeling than that millisecond you're sure you are going to die after leaning your chair back a little too far.

Offline DesiredForgotton

  • Member
  • **
  • Posts: 93
  • Karma: 0
Re: Darth_Gimp's Captain America
« Reply #13 on: March 05, 2010, 06:18:57 PM »
*Sticks Hand Up* Two Questions .. One

What the hell is the rule of thirds ?

And Two

How can i get this LOMO effect script thingy and the other one working ?
 

Offline Darth_Gimp

  • Number One
  • *****
  • Posts: 2,833
  • Karma: 0
  • Faith, Folk, Family!
    • lds-jedi.deviantart.com
    • Odinic Rite
Re: Darth_Gimp's Captain America
« Reply #14 on: March 05, 2010, 09:13:25 PM »
Put the scripts into your script folder ... Rule of Thirds is a basic concept in art and photography. Please consider both parts here:
Part One
Part Two
GimpDome Group: http://gimpdome.deviantart.com/
My DeviantArt: http://lds-jedi.deviantart.com/

There's no worse feeling than that millisecond you're sure you are going to die after leaning your chair back a little too far.


Offline DesiredForgotton

  • Member
  • **
  • Posts: 93
  • Karma: 0
Re: Darth_Gimp's Captain America
« Reply #15 on: March 06, 2010, 06:38:35 AM »
Put the scripts into your script folder ... Rule of Thirds is a basic concept in art and photography. Please consider both parts here:
Part One
Part Two
That Is actually Extremly interessting .. Thanks Darth  :D

Posted on: March 06, 2010, 12:24:18 PM
*Bangs head* The LOMO Thingy Thing Says :  bad syntax of binding spec in let : (theImage)

What the hell does this mean ?

Posted on: March 06, 2010, 01:22:18 PM
I Gave it a try but I don't think it worked for me.. Nice Tut Though


Offline Darth_Gimp

  • Number One
  • *****
  • Posts: 2,833
  • Karma: 0
  • Faith, Folk, Family!
    • lds-jedi.deviantart.com
    • Odinic Rite
Re: Darth_Gimp's Captain America
« Reply #16 on: March 06, 2010, 12:16:23 PM »
you can fake the LOMO... based on the error I think its now an old version of the script.  To fake it,

* Make a layer above all and set it to overlay
* set colours to white foreground and black background
* pull a radial gradient from the center to one of the corners
GimpDome Group: http://gimpdome.deviantart.com/
My DeviantArt: http://lds-jedi.deviantart.com/

There's no worse feeling than that millisecond you're sure you are going to die after leaning your chair back a little too far.

Offline fencepost

  • Member
  • **
  • Posts: 2,626
  • Karma: 0
    • fence-post.deviantart.com
Re: Darth_Gimp's Captain America
« Reply #17 on: March 06, 2010, 01:43:02 PM »
Code has been fixed to work in the newer versions of GIMP.  Replace it with the current code and refresh your scripts.


Code: [Select]
;

;                         LOMO Effect

;                          by Alexia Death

;

;

; Licesnse: GPL ver2 or later

;

; This represents my third attempt at gimp scripting and

; Scheme language. If you feel its not as good as it can be,

; feel free to improve it. 

;



(define (script-fu-lomo-effect     inImage

                                      inLayer

                                      inCopy

                                      inFlatten

        )

  (let (

       (theWidth (car (gimp-image-width inImage)))

       (theHeight (car (gimp-image-height inImage)))

       (theImage 0)

       (base 0)

       (overlay 0)

       (floating-sel 0)

       )



    (set! theImage (if (= inCopy TRUE)

                     (car (gimp-image-duplicate inImage))

                     inImage

                   )

    )

    (if (= inCopy FALSE)

      (begin

        (gimp-image-undo-group-start theImage)

      )

    )   

    (if (> (car (gimp-drawable-type inLayer)) 1)

        (gimp-image-convert-rgb theImage)

    )



; flattning the image at hand into a copy

    (gimp-edit-copy-visible theImage)

; Making base layer

    (set! base (car (gimp-layer-new theImage

                                        theWidth

                                        theHeight

                                        RGBA-IMAGE

                                        "base"

                                        100

                                        NORMAL-MODE)))

    (gimp-image-add-layer theImage base -1)

   

    (gimp-floating-sel-anchor (car (gimp-edit-paste base TRUE)))



    (gimp-hue-saturation base ALL-HUES 0 0 20)

   

    (gimp-brightness-contrast base 0 20)



; making vignetting layer

     (set! overlay (car (gimp-layer-new theImage

                                        theWidth

                                        theHeight

                                        RGBA-IMAGE

                                        "vignetting"

                                        100

                                        OVERLAY-MODE)))

    (gimp-image-add-layer theImage overlay -1)

   

    (gimp-context-push)

   

    (gimp-context-set-foreground '(255 255 255))

   

    (gimp-context-set-background '(0 0 0))

   

        (gimp-edit-blend overlay FG-BG-RGB-MODE NORMAL-MODE

                     GRADIENT-RADIAL 100 0 REPEAT-NONE FALSE

                     FALSE 0 0 TRUE

                     (/ theWidth 2) (/ theHeight 2) (- theWidth (/ theWidth 8)) (- theHeight (/ theHeight 8)))

   

    (gimp-context-pop)

   

    ;(gimp-layer-set-opacity overlay 50)

   

    (if (= inFlatten TRUE)

        (gimp-image-flatten theImage)

    )

    (if (= inCopy TRUE)

      (begin

        (gimp-image-clean-all theImage)

        (gimp-display-new theImage)

      )

    )

    (if (= inCopy FALSE)

      (begin

        (gimp-image-undo-group-end theImage)

      )

    )

    (gimp-displays-flush)

  )                                     

)







(script-fu-register "script-fu-lomo-effect"

  _"_LOMO effect..."

  _"Give LOMO look to a photos."

  "Alexia Death"

  "2007, Alexia Death."

  "4rd October 2007"

  "RGB* GRAY*"

  SF-IMAGE      "The image"               0

  SF-DRAWABLE   "The layer"               0

  SF-TOGGLE     _"Work on copy"           FALSE

  SF-TOGGLE     _"Flatten image"          FALSE

)



(script-fu-menu-register "script-fu-lomo-effect"

                         "<Image>/FX-Foundry/Photo Effects")

I'd rate you as an upper-middle-lower-mod with pro-novice-inter tendencies.....and a twist of lime!  Of course, my rating scale is completely objectively subjective, but ALWAYS consistently inconsistent.

Offline Darth_Gimp

  • Number One
  • *****
  • Posts: 2,833
  • Karma: 0
  • Faith, Folk, Family!
    • lds-jedi.deviantart.com
    • Odinic Rite
Re: Darth_Gimp's Captain America
« Reply #18 on: March 06, 2010, 01:49:14 PM »
Thanks Fence...
GimpDome Group: http://gimpdome.deviantart.com/
My DeviantArt: http://lds-jedi.deviantart.com/

There's no worse feeling than that millisecond you're sure you are going to die after leaning your chair back a little too far.

Offline DesiredForgotton

  • Member
  • **
  • Posts: 93
  • Karma: 0
Re: Darth_Gimp's Captain America
« Reply #19 on: March 06, 2010, 04:16:57 PM »
Code has been fixed to work in the newer versions of GIMP.  Replace it with the current code and refresh your scripts.


Code: [Select]
;

;                         LOMO Effect

;                          by Alexia Death

;

;

; Licesnse: GPL ver2 or later

;

; This represents my third attempt at gimp scripting and

; Scheme language. If you feel its not as good as it can be,

; feel free to improve it. 

;



(define (script-fu-lomo-effect     inImage

                                      inLayer

                                      inCopy

                                      inFlatten

        )

  (let (

       (theWidth (car (gimp-image-width inImage)))

       (theHeight (car (gimp-image-height inImage)))

       (theImage 0)

       (base 0)

       (overlay 0)

       (floating-sel 0)

       )



    (set! theImage (if (= inCopy TRUE)

                     (car (gimp-image-duplicate inImage))

                     inImage

                   )

    )

    (if (= inCopy FALSE)

      (begin

        (gimp-image-undo-group-start theImage)

      )

    )   

    (if (> (car (gimp-drawable-type inLayer)) 1)

        (gimp-image-convert-rgb theImage)

    )



; flattning the image at hand into a copy

    (gimp-edit-copy-visible theImage)

; Making base layer

    (set! base (car (gimp-layer-new theImage

                                        theWidth

                                        theHeight

                                        RGBA-IMAGE

                                        "base"

                                        100

                                        NORMAL-MODE)))

    (gimp-image-add-layer theImage base -1)

   

    (gimp-floating-sel-anchor (car (gimp-edit-paste base TRUE)))



    (gimp-hue-saturation base ALL-HUES 0 0 20)

   

    (gimp-brightness-contrast base 0 20)



; making vignetting layer

     (set! overlay (car (gimp-layer-new theImage

                                        theWidth

                                        theHeight

                                        RGBA-IMAGE

                                        "vignetting"

                                        100

                                        OVERLAY-MODE)))

    (gimp-image-add-layer theImage overlay -1)

   

    (gimp-context-push)

   

    (gimp-context-set-foreground '(255 255 255))

   

    (gimp-context-set-background '(0 0 0))

   

        (gimp-edit-blend overlay FG-BG-RGB-MODE NORMAL-MODE

                     GRADIENT-RADIAL 100 0 REPEAT-NONE FALSE

                     FALSE 0 0 TRUE

                     (/ theWidth 2) (/ theHeight 2) (- theWidth (/ theWidth 8)) (- theHeight (/ theHeight 8)))

   

    (gimp-context-pop)

   

    ;(gimp-layer-set-opacity overlay 50)

   

    (if (= inFlatten TRUE)

        (gimp-image-flatten theImage)

    )

    (if (= inCopy TRUE)

      (begin

        (gimp-image-clean-all theImage)

        (gimp-display-new theImage)

      )

    )

    (if (= inCopy FALSE)

      (begin

        (gimp-image-undo-group-end theImage)

      )

    )

    (gimp-displays-flush)

  )                                     

)







(script-fu-register "script-fu-lomo-effect"

  _"_LOMO effect..."

  _"Give LOMO look to a photos."

  "Alexia Death"

  "2007, Alexia Death."

  "4rd October 2007"

  "RGB* GRAY*"

  SF-IMAGE      "The image"               0

  SF-DRAWABLE   "The layer"               0

  SF-TOGGLE     _"Work on copy"           FALSE

  SF-TOGGLE     _"Flatten image"          FALSE

)



(script-fu-menu-register "script-fu-lomo-effect"

                         "<Image>/FX-Foundry/Photo Effects")

Thank you I'll Give this a try If Not I'll Do the Fake LOMO
you can fake the LOMO... based on the error I think its now an old version of the script.  To fake it,

* Make a layer above all and set it to overlay
* set colours to white foreground and black background
* pull a radial gradient from the center to one of the corners

Thanks Darth I'll go Give my Alice in wonderland One another go .. maybe i'll be more inspired now as well Just came back from watcing the film 

Posted on: March 06, 2010, 10:23:50 PM
OK My Second Go I think i prefer this one :D



Thanks for the help guys =D


Tags:
 

anything