-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathFU_effects-selection_glow-selection.scm
237 lines (212 loc) · 7.68 KB
/
FU_effects-selection_glow-selection.scm
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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
; FU_effects-selection_glow-selection.scm
; version 2.8 [gimphelp.org]
; last modified/tested by Paul Sherman
; 02/13/2014 on GIMP-2.8.10
; 22/09/2020 on GIMP-2.10.20
;
; Modified to remove deprecated procedures as listed:
; Wed Oct 1 22:14:44 EDT 2008
;
; Changed on 12/2/2007 by Paul Sherman <gimphelp.org>
; Updated for GIMP 2.4.x
; Changed flow of selection check to make warning about "No selection"
; exit gracefully after giving the message
; also changed menu location
;
;==============================================================
;
; Installation:
; This script should be placed in the user or system-wide script folder.
;
; Windows Vista/7/8)
; C:\Program Files\GIMP 2\share\gimp\2.0\scripts
; or
; C:\Users\YOUR-NAME\.gimp-2.8\scripts
;
; Windows XP
; C:\Program Files\GIMP 2\share\gimp\2.0\scripts
; or
; C:\Documents and Settings\yourname\.gimp-2.8\scripts
;
; Linux
; /home/yourname/.gimp-2.8/scripts
;
; Linux system-wide
; /usr/share/gimp/2.0/scripts
;
;==============================================================
;
; LICENSE
;
; 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.
;
; You should have received a copy of the GNU General Public License
; along with this program. If not, see <http://www.gnu.org/licenses/>.
;
;==============================================================
; Original information
;
; Glow
; Copyright (c) 1997 Adrian Likins
; aklikins@eos.ncsu.ed
;
; Makes a "glow" around the outside of the current selection.
;==============================================================
(define (my-pair->string pair)
(cons ((pair? (cdr pair))
(my-list->string pair))
(else
(print "aoeuo")
(string-append "(" (to-string (car pair))
" . " (to-string (cdr pair)) ")")
)
)
)
(define (flatten-string-list str lst)
(cond ((not (null? lst))
(flatten-string-list (string-append str (car lst) " ")
(cdr lst)))
(else
str
)
)
)
(define (my-list->string pair)
(let ((string-list (flatten-string-list ""
(map (lambda (x) (to-string x)) pair))))
(string-append "(" string-list ")")
)
)
(define (to-string arg)
(cond ((number? arg)
(number->string arg))
((string? arg)
arg)
((symbol? arg)
" <symbol is unhandeld> ")
((pair? arg)
(my-pair->string arg))
(else
" <unhandeled> ")
)
)
(define (message-box . args)
(gimp-message (apply string-append (map to-string args)))
)
(define (FU-glow-selection image
drawable
glow-radius
feather-radius
glow-color
glow-opacity
keep-selection)
(if (= (car (gimp-selection-is-empty image)) TRUE)
(begin
(message-box "The current image doesn't have a selection.\n\nT1his plugin creates a glow effect around a \nSELECTED AREA of the image.")
(quit)
)
(begin
(gimp-image-undo-group-start image)
(if (not (= RGB (car (gimp-image-base-type image))))
(gimp-image-convert-rgb image)
)
)
)
(let* (
(type (car (gimp-drawable-type-with-alpha drawable)))
(old-gradient (car (gimp-context-get-gradient)))
(old-fg (car (gimp-context-get-foreground)))
(old-bg (car (gimp-context-get-background)))
(seperate-layer TRUE)
(from-selection TRUE)
(active-selection (car (gimp-selection-save image)))
(active-layer 0)
(effect-layer 0)
)
(gimp-layer-add-alpha drawable)
(define selection-bounds (gimp-selection-bounds image))
(define select-offset-x (cadr selection-bounds))
(define select-offset-y (caddr selection-bounds))
(define select-width (- (cadr (cddr selection-bounds)) select-offset-x))
(define select-height (- (caddr (cddr selection-bounds)) select-offset-y))
(define buffer (+ (* glow-radius 2) (* feather-radius 2) 2))
(define select-height (+ select-height buffer))
(define select-width (+ select-width buffer))
(define select-offset-x (- select-offset-x (/ buffer 2)))
(define select-offset-y (- select-offset-y (/ buffer 2)))
(if (= seperate-layer TRUE)
(begin
(set! effect-layer (car (gimp-layer-new image
select-width
select-height
type
"glow layer"
100
LAYER-MODE-NORMAL)))
(gimp-layer-set-offsets effect-layer select-offset-x select-offset-y)
(gimp-image-insert-layer image effect-layer 0 -1)
(gimp-selection-none image)
(gimp-edit-clear effect-layer)
(gimp-image-select-item image CHANNEL-OP-REPLACE active-selection)
(gimp-image-set-active-layer image effect-layer )
)
(begin
(gimp-edit-copy drawable)
)
)
(set! active-layer (car (gimp-image-get-active-layer image)))
(gimp-selection-grow image glow-radius)
(gimp-selection-feather image feather-radius)
(gimp-context-set-background glow-color)
(gimp-edit-fill active-layer FILL-BACKGROUND)
(if (= seperate-layer TRUE)
(begin
(gimp-image-select-item image CHANNEL-OP-REPLACE active-selection)
(gimp-edit-clear active-layer)
(gimp-layer-set-opacity active-layer glow-opacity)
)
(begin
(gimp-image-select-item image CHANNEL-OP-REPLACE active-selection)
(let ((floating-sel (car (gimp-edit-paste active-layer FALSE))))
(gimp-floating-sel-anchor floating-sel)
)
(gimp-image-select-item image CHANNEL-OP-REPLACE active-selection)
)
)
(gimp-context-set-gradient old-gradient)
(gimp-context-set-background old-bg)
(gimp-context-set-foreground old-fg)
(if (= keep-selection FALSE)
(gimp-selection-none image)
)
(gimp-image-set-active-layer image drawable)
(gimp-image-remove-channel image active-selection)
;Finish the undo group for the process
(gimp-image-undo-group-end image)
(gimp-displays-flush)
)
)
(script-fu-register "FU-glow-selection"
"<Image>/Script-Fu2/Select/Glow Selection"
"Makes a \"glow\" around the outside of the current selection. \nfile:FU_effects-selection_glow-selection.scm"
"Adrian Likins <adrian@gimp.org>"
"Adrian Likins"
"10/12/97"
"*"
SF-IMAGE "Image" 0
SF-DRAWABLE "Drawable" 0
SF-VALUE "Glow Radius" "2"
SF-VALUE "Feather Radius" "10"
SF-COLOR "Glow Color" '(255 255 255)
SF-VALUE "Glow Opacity (only for seperate layer)" "100"
SF-TOGGLE "Keep Selection?" TRUE
)
; end of script