/usr/share/gimp/2.0/scripts/trefftzs-pencil-sketch.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 135 136 137 138 139 140 141 142 143 144 145 146 | ;
; The GIMP -- an image manipulation program
; Copyright (C) 1995 Spencer Kimball and Peter Mattis
;
; Pencil sketch script for GIMP 2.4
; Original author: Jeff Trefftzs <trefftzs@tcsn.net>
;
; Tags: artistic
;
; Author statement:
;
;
; --------------------------------------------------------------------
; Distributed by Gimp FX Foundry project
; --------------------------------------------------------------------
; - Changelog -
; 020113 - Version 1.1. Added multiple choice for edge detection
; 020113 - Version 1.01. Fixed mask texture bug.
; 020113 - Version 1.0. Initial Release.
;
; Changed on March 5, 2004 by Kevin Cozens <kcozens@interlog.com>
; Updated for GIMP 2.0pre3
; Updated for GIMP 2.4 by Paul Sherman
;
; --------------------------------------------------------------------
;
; 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 the function:
(define (script-fu-pencil-sketch inImage inLayer
inWeight
inEdges
inMaskPat
inTextToggle
inTexture)
(let*
(
(WhiteLayer (car (gimp-layer-copy inLayer TRUE)))
(MaskedLayer (car (gimp-layer-copy inLayer TRUE)))
(EdgeLayer (car (gimp-layer-copy inLayer TRUE)))
(LayerMask (car (gimp-layer-create-mask MaskedLayer 0)))
)
(gimp-image-undo-group-start inImage)
(gimp-image-add-layer inImage WhiteLayer -1)
(gimp-image-add-layer inImage MaskedLayer -1)
(gimp-image-add-layer inImage EdgeLayer -1)
(gimp-drawable-set-name WhiteLayer _"Paper Layer")
(gimp-drawable-set-name MaskedLayer _"Copy with layer mask")
(gimp-drawable-set-name EdgeLayer _"Edges from original image")
;; Real work goes in here
(gimp-drawable-fill WhiteLayer WHITE-FILL) ; Fill the white layer
(if (> inTextToggle 0)
(begin
(gimp-context-set-pattern inTexture)
(gimp-edit-bucket-fill WhiteLayer PATTERN-BUCKET-FILL NORMAL-MODE
100 0 FALSE 0 0)
)
)
;; Create the layer mask and put the paper pattern in it.
(gimp-layer-add-mask MaskedLayer LayerMask)
;The following doesn't appear to be needed under 2.0 - kcozens
; (gimp-image-set-active-channel inImage LayerMask)
(gimp-context-set-pattern inMaskPat)
(gimp-edit-bucket-fill LayerMask PATTERN-BUCKET-FILL NORMAL-MODE
100 ; opacity
0 ; threshold
FALSE ; no sample-merged
0 0) ; X, Y coords
(gimp-image-unset-active-channel inImage) ; finished with it
;; Now find the edges
(gimp-image-set-active-layer inImage EdgeLayer)
(cond ((= inEdges 0) ; Laplacian edges
(plug-in-gauss-iir TRUE inImage EdgeLayer inWeight TRUE TRUE)
(plug-in-laplace TRUE inImage EdgeLayer))
((= inEdges 1) ; Sobel Edges
(plug-in-sobel TRUE inImage EdgeLayer TRUE TRUE TRUE))
((= inEdges 2) ; Synthetic Edges
(set! tmplayer (car (gimp-layer-copy EdgeLayer TRUE)))
(gimp-image-add-layer inImage tmplayer -1)
(gimp-layer-set-mode tmplayer DIVIDE-MODE)
(plug-in-gauss-iir TRUE inImage tmplayer inWeight TRUE TRUE)
(set! EdgeLayer
(car (gimp-image-merge-down inImage tmplayer
EXPAND-AS-NECESSARY)))
(gimp-levels EdgeLayer HISTOGRAM-VALUE
(- 255 inWeight) ; low input
255 ; high input
1.0 ; gamma
0 255) ; output
)
) ; end cond
(gimp-layer-set-mode EdgeLayer DARKEN-ONLY-MODE) ; in case white bg
(gimp-image-set-active-layer inImage inLayer)
(gimp-image-undo-group-end inImage)
(gimp-displays-flush)
)
)
(script-fu-register
"script-fu-pencil-sketch"
_"Pencil Sketch..."
_"Creates an interesting simulation of a pencil sketch by placing a textured layer mask on the original image, above a white layer, and below a layer containing edges from the original image.\n\nThis script does most of the work, but you may want to adjust the levels of thelayer mask to vary the amount of image texture. If you have additional edge detector plugins (such as the ipx suite), you may want to use one of them for the edges instead of the built-in laplacian. I did not include this option, since the ipx tools are still very much beta at this time.\n\nAdditional interesting effects can be obtained by varying the levels of the Paper Layer."
"Jeff Trefftzs"
"Copyright 2002, Jeff Trefftzs"
"January 12, 2002"
"RGB* GRAY*"
SF-IMAGE "The Image" 0
SF-DRAWABLE "The Layer" 0
SF-ADJUSTMENT _"Line Weight (Fine) 1 <----> 128 (Thick)"
'(3 1 128 1 8 0 1)
SF-OPTION _"Edge Detector" '(_"Laplace" _"Sobel" _"Synthetic")
SF-PATTERN _"Image Texture" "Paper"
SF-TOGGLE _"Textured Paper" FALSE
SF-PATTERN _"Paper Texture" "Crinkled Paper"
)
(script-fu-menu-register "script-fu-pencil-sketch"
"<Image>/FX-Foundry/Artistic")
|