/usr/share/gimp/2.0/scripts/xtns-gutteridge-dracula.scm is in gimp-plugin-registry 7.20140602ubuntu3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 | ;
; The GIMP -- an image manipulation program
; Copyright (C) 1995 Spencer Kimball and Peter Mattis
;
; Dracula! script for GIMP 2.4
; Chris Gutteridge (cjg@ecs.soton.ac.uk)
; At ECS Dept, University of Southampton, England.
;
; Tags: logo
;
; Author statement:
;I've got a new script, but I've not been able to publish it due it
;network faults + firewalls...
;
;I include it here, should you find a way to publish it for me.
;I appologise for how cheesy it is.
;
;(From the creator of fuzzy-selection and camo etc...)
;
; "Dracula!" or "Cheesy Goth"
;
; --------------------------------------------------------------------
; Distributed by Gimp FX Foundry project
; --------------------------------------------------------------------
; - Changelog -
; Updated to Gimp2.4 (11-2007) http://gimpscripts.com
; Added user selection options for all parameters
;
;
; --------------------------------------------------------------------
;
; 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 2 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.
;
; You should have received a copy of the GNU General Public License
; along with this program; if not, write to the Free Software
; Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(define (script-fu-blood-logo inText inFont inFontSize inBorder inDrip)
(define oldFore (car(gimp-context-get-foreground)) )
(define oldBack (car(gimp-context-get-background)) )
(define theImage (car(gimp-image-new 100 100 RGB)) )
(define textLayer (car(gimp-layer-new theImage 10 10 RGBA-IMAGE _"Text Layer" 100 NORMAL)) )
(define bloodLayer (car(gimp-layer-new theImage 10 10 RGBA-IMAGE _"Blood Layer" 100 NORMAL)) )
(define backLayer(car(gimp-layer-new theImage 10 10 RGBA-IMAGE _"Background" 100 NORMAL)) )
(gimp-context-set-background '(0 0 0) )
(gimp-context-set-foreground '(255 255 255))
(gimp-image-add-layer theImage textLayer 0)
(gimp-image-add-layer theImage bloodLayer 1)
(gimp-image-add-layer theImage backLayer 2)
(gimp-selection-all theImage)
(gimp-edit-clear textLayer)
(gimp-edit-clear bloodLayer)
(gimp-selection-none theImage)
(define theText (car (gimp-text theImage textLayer 0 0 inText 0 TRUE inFontSize PIXELS "*" inFont "*" "r" "*" "*" "*" "*")))
(define theBuffer (+ inBorder inDrip inDrip))
(gimp-layer-set-offsets theText theBuffer theBuffer)
(define theWidth (+ (car(gimp-drawable-width theText)) theBuffer theBuffer) )
(define theHeight (+ (car(gimp-drawable-height theText)) theBuffer theBuffer) )
(gimp-image-resize theImage theWidth theHeight 0 0)
(gimp-layer-resize textLayer theWidth theHeight 0 0)
(gimp-layer-resize bloodLayer theWidth theHeight 0 0)
(gimp-layer-resize backLayer theWidth theHeight 0 0)
(gimp-floating-sel-anchor theText)
(gimp-selection-all theImage)
(gimp-edit-fill backLayer BACKGROUND-FILL)
(gimp-selection-none theImage)
(gimp-selection-layer-alpha textLayer)
(gimp-selection-grow theImage inBorder)
(gimp-edit-fill bloodLayer BACKGROUND-FILL)
(gimp-selection-none theImage)
(gimp-layer-scale bloodLayer theWidth (/ theHeight 8) TRUE)
(define (smear n) (if (> n 0) (prog1 (plug-in-spread TRUE theImage bloodLayer 0 1) (smear (- n 1)))))
(smear inDrip)
(gimp-layer-scale bloodLayer theWidth theHeight TRUE)
(gimp-selection-layer-alpha textLayer)
(gimp-selection-grow theImage inBorder)
(gimp-edit-fill bloodLayer BACKGROUND-FILL)
(gimp-selection-none theImage)
(plug-in-gauss-iir TRUE theImage bloodLayer 4 TRUE TRUE)
(plug-in-threshold-alpha TRUE theImage bloodLayer 127)
(gimp-selection-layer-alpha bloodLayer)
(gimp-context-set-foreground '(255 0 0))
(gimp-edit-bucket-fill bloodLayer FG-BUCKET-FILL 0 100 0 0 0 0)
(gimp-selection-none theImage)
(plug-in-gauss-iir TRUE theImage bloodLayer 1 TRUE TRUE)
(define oneLayer (car(gimp-image-flatten theImage)) )
(plug-in-autocrop TRUE theImage oneLayer)
(gimp-context-set-foreground oldFore)
(gimp-context-set-background oldBack)
(gimp-display-new theImage)
)
; Register the function with the GIMP:
(script-fu-register "script-fu-blood-logo"
_"Dracula"
_"Draws the given text string with a border of dripping blood!"
"Christopher Gutteridge"
"1998, Christopher Gutteridge"
"2007, Scott Mosteller"
""
SF-STRING _"Text" "Dracula"
SF-FONT _"Font" "becker"
SF-ADJUSTMENT _"Font Size (pixels)" '(150 2 1000 1 10 0 1)
SF-ADJUSTMENT _"Boder Size" '(4 1 99 1 1 0 1)
SF-ADJUSTMENT _"Drip Size" '(10 5 99 1 1 0 1)
)
(script-fu-menu-register "script-fu-blood-logo"
"<Image>/File/Create/FX-Foundry/Logos")
|