It is currently Sat Jul 06, 2024 8:03 pm


All times are UTC - 5 hours [ DST ]



Post new topic Reply to topic  [ 40 posts ]  Go to page Previous  1, 2
Author Message
 Post subject: Re: Pop Out Text
PostPosted: Fri Dec 11, 2015 4:14 pm  (#21) 
Offline
GimpChat Member
User avatar

Joined: May 16, 2010
Posts: 14709
Location: USA
Oregonian wrote:
Rod wrote:
Love this pattern :)


You can get the pattern here: viewtopic.php?p=17187#p17187

I colorized it, copied it to the clipboard and used it in the image.


Thanks O i grabbed it up. I am working on a update to the script folks. Gimme two minutes. :bigthup
I think you will like the fix.

_________________
Image
Edmund Burke nailed it when he said, "The only thing necessary for the triumph of evil is for good men to do nothing."


Top
 Post subject: Re: Pop Out Text
PostPosted: Fri Dec 11, 2015 4:20 pm  (#22) 
Offline
GimpChat Member
User avatar

Joined: May 16, 2010
Posts: 14709
Location: USA
Version 3 update attached to first post. I fixed the shadow blur. Default blur is now set to 20. This update should make the text pop much better.

Image

_________________
Image
Edmund Burke nailed it when he said, "The only thing necessary for the triumph of evil is for good men to do nothing."


Top
 Post subject: Re: Pop Out Text
PostPosted: Fri Dec 11, 2015 4:26 pm  (#23) 
Offline
GimpChat Member
User avatar

Joined: May 16, 2010
Posts: 14709
Location: USA
By the way the new menu location is Rod>Alpha to Logo>Pop Out Text.

Thanks!

Image

_________________
Image
Edmund Burke nailed it when he said, "The only thing necessary for the triumph of evil is for good men to do nothing."


Top
 Post subject: Re: Pop Out Text
PostPosted: Fri Dec 11, 2015 7:38 pm  (#24) 
Offline
Retired Staff
User avatar

Joined: May 22, 2008
Posts: 6947
Location: Somewhere in GIMP
I think the new shadow is too heavy. I like the second version better and I've gone and overwritten it. :(

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


Top
 Post subject: Re: Pop Out Text
PostPosted: Fri Dec 11, 2015 10:38 pm  (#25) 
Offline
GimpChat Member
User avatar

Joined: May 16, 2010
Posts: 14709
Location: USA
Oregonian wrote:
I think the new shadow is too heavy. I like the second version better and I've gone and overwritten it. :(


I pasted the code for the second version here for you O.
;;; Plugin  : Pop Out Text or Shape
;;; Author  : Rod Detmer
;;; Date    : December 2015
;;; Revision: v-01
;;;               
;;; Version : v-01
;;; Latest version at: http://www.gimpchat.com
;;; Required : Gimp 2.8 or later
;;;
;;; Description:
;;; Creates a pop out effect on a pattern layer.
;;; Change Log:
;;; Version-1.0
;;;
; Information can be found at http://www.gimpchat.com
;
; License: GPLv3
; This program is free software: you can redistribute it and/or modify
; it under the terms of the GNU General Public License as published by
; the Free Software Foundation, either version 3 of the License, or
; (at your option) any later version.
;
; This program is distributed in the hope that it will be useful,
; but WITHOUT ANY WARRANTY; without even the implied warranty of
; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
; GNU General Public License for more details.
;
; To view a copy of the GNU General Public License
; visit: http://www.gnu.org/licenses/gpl.html

(define (script-fu-pop-out-effect_RD image drawable
                                          my-pattern
                                shadow-color
                                shadow-blur
                                          back-shadow-size
                                offsetx
                                offsety
                                text-bevel)
(gimp-image-undo-group-start image)

  ; save user settings
  (gimp-context-push)

  ; begin

  (let*
    (
   (width (car (gimp-image-width image)))
    (height (car (gimp-image-height image)))
    (original (car (gimp-layer-new-from-visible image image "Original")))   
    (pattern-fill (car (gimp-layer-new image width height RGBA-IMAGE "Pattern Fill" 100 0)))
    (pattern-template (car (gimp-layer-new image width height RGBA-IMAGE "Pattern Filled Text" 100 0)))   
    (shadow-color-fill (car (gimp-layer-new image width height RGBA-IMAGE "Shadow Color" 100 0)))   
    ;(original-copy (car (gimp-layer-new image width height RGBA-IMAGE "Pattern Filled Text" 100 0)))
    ;(original-copy (car (gimp-floating-sel-anchor)))   
    )

   
    ; add our layers to the image
  (gimp-image-add-layer image original 0)
  (gimp-layer-resize-to-image-size original)

      ; add the pattern layer
  (gimp-image-add-layer image pattern-fill 2)
  (gimp-layer-resize-to-image-size pattern-fill) 
  (gimp-context-set-pattern my-pattern)
  (gimp-drawable-fill pattern-fill PATTERN-FILL) 
  ;(gimp-patterns-popup "my-pattern" "patterns" "Warning")



   


   ; Create our colored and blurred shadow layer
  (gimp-image-add-layer image shadow-color-fill 1)
  (gimp-layer-resize-to-image-size shadow-color-fill)     
  (gimp-selection-layer-alpha original) ; our selection
  (gimp-selection-grow image back-shadow-size)
  (gimp-context-set-foreground shadow-color) 
  (gimp-edit-fill shadow-color-fill FOREGROUND-FILL)
 
   ; deselect the selection before blur
  ;(gimp-selection-none image)
 
    ; Blur shadow layer
  (plug-in-gauss RUN-NONINTERACTIVE image shadow-color-fill shadow-blur shadow-blur 1)

     ; Create pattern filled text layer
  (gimp-image-add-layer image pattern-template 0)
  (gimp-layer-resize-to-image-size pattern-template)
  (gimp-context-set-pattern my-pattern)
  (gimp-drawable-fill pattern-template PATTERN-FILL)   
  (gimp-selection-layer-alpha original) ; our selection 
  (gimp-selection-invert image)
  (gimp-edit-clear pattern-template) 
  ;(gimp-floating-sel-anchor original-copy) 
   ; Offset our pattern filled text layer
  (gimp-drawable-offset pattern-template 0 0 offsetx offsety)   
 
    ; bevel the text pattern filled layer
  (script-fu-add-bevel image pattern-template text-bevel FALSE FALSE)

  (gimp-layer-set-mode pattern-template SCREEN-MODE)

 
    ; Set visibility
  (gimp-drawable-set-visible drawable FALSE)   
  (gimp-drawable-set-visible original TRUE)

    ; set opacity original layer
  (gimp-layer-set-opacity original 70)   
          ; end
   

  ; remove artifacts
  (gimp-selection-layer-alpha original) ; our selection 
  (gimp-selection-invert image)
  (gimp-edit-clear pattern-template)   
 
  (gimp-selection-none image)   
  ; display new image and return user settings
  (gimp-context-pop)   
  (gimp-image-undo-group-end image)
  (gimp-displays-flush image)
     
  )
)


    ;register menu location and information   

(script-fu-register
"script-fu-pop-out-effect_RD"
"<Image>/Rod/Alpha to Logo/Pop Out Effect"
"creates a pop out effect from a pattern layer  -  script name: pop-out-effect_RD.scm"
"Rod Detmer"
"Rod Detmer"
"December 2015"
"RGB* GRAY*"
SF-IMAGE       "The Image"                  0
SF-DRAWABLE    "The Drawable"               0
SF-PATTERN "Select Pattern"                 "Bricks" 
SF-COLOR       "Shadow Color"              '(20 5 8)
SF-ADJUSTMENT  "Shadow Blur"               '(20.0 0.0 9480.0 1 10 0 SF-SLIDER)
SF-ADJUSTMENT "Shadow Size"                '(5 1 36727 1 10 0 SF-SLIDER)
SF-ADJUSTMENT "offset Amount x ( Vert)"    '(5 -1185 1185 1 10 0 SF-SLIDER)
SF-ADJUSTMENT "offset Amount y ( Horiz)"   '(7 -1185 1185 1 10 0 SF-SLIDER)
SF-ADJUSTMENT "Bevel Size"                 '(4 1 30 1 10 0 SF-SLIDER)
)


I really was going for the effect in version 3 though. The blur just wasn't feathered enough for me.

_________________
Image
Edmund Burke nailed it when he said, "The only thing necessary for the triumph of evil is for good men to do nothing."


Top
 Post subject: Re: Pop Out Text
PostPosted: Fri Dec 11, 2015 10:52 pm  (#26) 
Offline
Retired Staff
User avatar

Joined: May 22, 2008
Posts: 6947
Location: Somewhere in GIMP
Thank you, Rod! :cool

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


Top
 Post subject: Re: Pop Out Text
PostPosted: Sat Dec 12, 2015 12:23 am  (#27) 
Offline
GimpChat Member

Joined: May 12, 2015
Posts: 4694
This is done with the defaults of the latest version:
Attachment:
PopOut.gif
PopOut.gif [ 4.25 MiB | Viewed 2150 times ]


Top
 Post subject: Re: Pop Out Text
PostPosted: Sat Dec 12, 2015 9:26 am  (#28) 
Offline
GimpChat Member
User avatar

Joined: May 16, 2010
Posts: 14709
Location: USA
You are very welcome O. That looks great Pat! :clap

_________________
Image
Edmund Burke nailed it when he said, "The only thing necessary for the triumph of evil is for good men to do nothing."


Top
 Post subject: Re: Pop Out Text
PostPosted: Sat Dec 12, 2015 12:51 pm  (#29) 
Offline
GimpChat Member

Joined: May 12, 2015
Posts: 4694
Thank you Rod. I like your script.


Top
 Post subject: Re: Pop Out Text
PostPosted: Mon Nov 22, 2021 2:18 pm  (#30) 
Offline
GimpChat Member
User avatar

Joined: Jan 06, 2020
Posts: 347
Location: The Netherlands
Would anyone care to look into this... it's not working for me anymore!


Attachments:
pop-out effect.png
pop-out effect.png [ 230.42 KiB | Viewed 701 times ]
Top
 Post subject: Re: Pop Out Text
PostPosted: Mon Nov 22, 2021 3:03 pm  (#31) 
Offline
GimpChat Member

Joined: Dec 19, 2018
Posts: 158
Jappaloe63 wrote:
Would anyone care to look into this... it's not working for me anymore!


It still works on my version 2.10.28 Samj's Portable.

But when I tried it for the second and third time the script didn't work.

I figured it was because I wasn't paying attention to the instruction given in post #1 :

"Remember you need to have just ONE text or shape layer for the script to work correctly. OR make the bg invisible first."

After that the script is working without problems.


Top
 Post subject: Re: Pop Out Text
PostPosted: Tue Nov 23, 2021 1:40 am  (#32) 
Offline
GimpChat Member
User avatar

Joined: Jan 06, 2020
Posts: 347
Location: The Netherlands
Thank you, I did what you said and now it works!


Top
 Post subject: Re: Pop Out Text
PostPosted: Fri Jan 14, 2022 1:29 pm  (#33) 
Offline
GimpChat Member
User avatar

Joined: May 16, 2010
Posts: 14709
Location: USA
Is it possible that you added a background layer before running the script?
Sorry it took so long to answer you btw.
You only need create your text layer and then run the script.

_________________
Image
Edmund Burke nailed it when he said, "The only thing necessary for the triumph of evil is for good men to do nothing."


Top
 Post subject: Re: Pop Out Text
PostPosted: Fri Jan 14, 2022 6:10 pm  (#34) 
Offline
GimpChat Member
User avatar

Joined: Jul 06, 2013
Posts: 2607
Location: California
It works. What I do is start with a transparent layer and then run the script.


Top
 Post subject: Re: Pop Out Text
PostPosted: Sun Jan 16, 2022 4:40 pm  (#35) 
Offline
GimpChat Member
User avatar

Joined: May 16, 2010
Posts: 14709
Location: USA
I have not gone thru all of my filters to make sure they work with the new version of Gimp.
I will do this soon.
Thank you.

_________________
Image
Edmund Burke nailed it when he said, "The only thing necessary for the triumph of evil is for good men to do nothing."


Top
 Post subject: Re: Pop Out Text
PostPosted: Sun Jan 16, 2022 7:30 pm  (#36) 
Offline
GimpChat Member
User avatar

Joined: Jul 06, 2013
Posts: 2607
Location: California
Rod wrote:
I have not gone thru all of my filters to make sure they work with the new version of Gimp.
I will do this soon.
Thank you.


Colored Pencil plus fails in gimp 2.10.30 in windows 10 64 bit:

Image


Top
 Post subject: Re: Pop Out Text
PostPosted: Mon Jan 17, 2022 2:54 pm  (#37) 
Offline
GimpChat Member
User avatar

Joined: May 16, 2010
Posts: 14709
Location: USA
Thanks! I'll look into it. Looks to be you possibly may be missing a file in your gimpressionist folders. And therefore my script cannot find it. Or it could be the procedure call is not correct in the script itself.

_________________
Image
Edmund Burke nailed it when he said, "The only thing necessary for the triumph of evil is for good men to do nothing."


Top
 Post subject: Re: Pop Out Text
PostPosted: Mon Jan 17, 2022 3:40 pm  (#38) 
Offline
GimpChat Member
User avatar

Joined: Jul 06, 2013
Posts: 2607
Location: California
Rod wrote:
Thanks! I'll look into it. Looks to be you possibly may be missing a file in your gimpressionist folders. And therefore my script cannot find it. Or it could be the procedure call is not correct in the script itself.


Oh, okay. Your other files work well.


Top
 Post subject: Re: Pop Out Text
PostPosted: Mon Jan 17, 2022 4:25 pm  (#39) 
Offline
GimpChat Member
User avatar

Joined: May 16, 2010
Posts: 14709
Location: USA
Thanks for checking them out for me. That saves me alot of work.

_________________
Image
Edmund Burke nailed it when he said, "The only thing necessary for the triumph of evil is for good men to do nothing."


Top
 Post subject: Re: Pop Out Text
PostPosted: Mon Jan 17, 2022 5:00 pm  (#40) 
Offline
GimpChat Member
User avatar

Joined: Jul 06, 2013
Posts: 2607
Location: California
Rod wrote:
Thanks for checking them out for me. That saves me alot of work.


You're welcome. I only checked out ones under your name. I'm not sure what other plugins you have. If you have more, I'd test those too.


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

All times are UTC - 5 hours [ DST ]


   Similar Topics   Replies 
No new posts Attachment(s) GEGL Text Style Collection - plugin with many fancy text styles

14

No new posts Attachment(s) manipulate a portion of text inside a text layer using python-fu

2

No new posts script to load text file and create text layer

6

No new posts Attachment(s) GEGL ROCK TEXT 2 - Advance rock text plugin -requires Gimp 2.10.32+

8

No new posts Attachment(s) Colorful Pattern from Text (Text Pattern) Plug-in

32



* Login  



Powered by phpBB3 © phpBB Group