/usr/share/gimp/2.0/scripts/diana-holga2c.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 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 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 | ; diana-holga2c
; 21, 22, 23, 24, 25, 28, 29, 9 d'ecembre 2005, 12, 13, 15 mai 2006,
; 15, 18 mars 2007, 29 janvier, 3 juin, 10 octobre 2008
; (c) Jean-Pierre Sutto <jpsmail(at)free.fr>
; Published under GPL version 2
(script-fu-register "diana-holga2c"
"<Image>/Filters/Artistic/diana-holga2b"
"This script-fu for The Gimp is a attempt to simulate the Diana/Holga Toys Cameras effect.
Last version can be found at:
http://www.vide.memoire.free.fr/photo/contrefacons/diana-holga2c.scm
Examples of use can be seen at:
http://www.vide.memoire.free.fr/photo/contrefacons/contrefacons2.php
A tutorial in French at:
http://www.vide.memoire.free.fr/photo/contrefacons/contrefacons.php
Ce script-fu pour The Gimp est une tentative pour simuler l'effet Toy Camera Diana/Holga.
La derni`ere version peut ^etre obtenue `a:
http://www.vide.memoire.free.fr/photo/contrefacons/diana-holga2c.scm
Des exemples d'utilisation peuvent être vus à: http://www.vide.memoire.free.fr/photo/contrefacons/contrefacons2.php
Une description à:
http://www.vide.memoire.free.fr/photo/contrefacons/contrefacons.php"
"(c) Jean-Pierre Sutto <jpsmail(at)free.fr>"
"Published under GPL version 2"
"October 10, 2008"
"*"
SF-IMAGE "Image" 0
SF-DRAWABLE "Drawable" 0
SF-ADJUSTMENT "Blur/Flou" '(2 0 10 1 1 0 0)
SF-ADJUSTMENT "Stretch/Etirement" '(2 0 5 1 1 0 0)
SF-ADJUSTMENT "Zoom/Zoom" '(2 0 5 1 1 0 0)
SF-ADJUSTMENT "Light/Lumiere" '(3 0 10 1 2 0 0)
SF-ADJUSTMENT "Vignetting/Vignettage" '(80 0 100 1 10 0 0)
SF-TOGGLE "Mask/Masque" TRUE
)
(define
(diana-holga2c
VarImage
VarDrawable
VarFlou
VarAngle
VarZoom
VarLumiere
VarVignettage
VarMasque
)
; d'ebut groupe d'annulation
(gimp-undo-push-group-start VarImage)
; r'ecup'eration des couleurs de fond et plume pour restauration `a la fin
(define VarBackOrigine (car (gimp-context-get-background)))
(define VarForeOrigine (car (gimp-context-get-foreground)))
; variables
(define VarReduction (/ 2 (+ 1 VarFlou)))
(define VarLargeur (car (gimp-image-width VarImage)))
(define VarHauteur (car (gimp-image-height VarImage)))
(define VarCentreX (/ VarLargeur 2))
(define VarCentreY (/ VarHauteur 2))
(define VarDiagonale
(sqrt (+ (* VarLargeur VarLargeur) (* VarHauteur VarHauteur)))
)
(define VarCalque (car (gimp-layer-new
VarImage
VarLargeur
VarHauteur
1 ; type
"Calque" ; nom
VarVignettage ; opacit'e
MULTIPLY-MODE
)))
(define VarGris (car (gimp-drawable-is-gray VarDrawable)))
(define VarMarge (* 0.008 VarDiagonale))
(define VarCorAngle (/ VarAngle 100))
(define VarCropLargeur (* VarCorAngle VarLargeur 2.7))
(define VarCropHauteur (* VarCorAngle VarHauteur 2.7))
(define VarCorBrouillage (* VarFlou 10))
(define VarFakeArray (cons-array 256 'byte))
(define VarZoomTrunc (trunc VarZoom))
(define VarForeOrigine (car (gimp-context-get-foreground)))
(define VarBackOrigine (car (gimp-context-get-background)))
; conversion en rgb si gris
(if (= VarGris TRUE)
(begin
(gimp-image-convert-rgb VarImage)
)
)
; taille/flou
(if (> VarFlou 0)
(begin
(gimp-image-scale VarImage (* VarReduction VarLargeur) (* VarReduction VarHauteur))
(gimp-image-scale VarImage VarLargeur VarHauteur)
)
)
; distorsion selon une courbe
(if (> VarAngle 0)
(begin
(plug-in-curve-bend
1 ; 1: run_mode
VarImage ; 2: image
VarDrawable ; 3: drawable
0 ; 4: rotation
TRUE ; 5: smoothing
TRUE ; 6: antialias
FALSE ; 7: work_on_copy
0 ; 8: curve_type
3 ; 9: argc_upper_point_x
(float-array 0 0.5 1) ; 10: upper_point_x
3 ; 11: argc_upper_point_y
(float-array 0.5 (- 0.5 VarCorAngle) 0.5) ; 12: upper_point_y
3 ; 13: argc_lower_point_x
(float-array 0 0.5 1) ; 14: lower_point_x
3 ; 15: argc_lower_point_y
(float-array 0.5 (+ 0.5 VarCorAngle) 0.5) ; 16: lower_point_y
256 ; 17: argc_upper_val_y
VarFakeArray ; 18: upper_val_y
256 ; 19: argc_lower_val_y
VarFakeArray ; 20: lower_val_y
)
(plug-in-curve-bend
1 ; 1: run_mode
VarImage ; 2: image
VarDrawable ; 3: drawable
90 ; 4: rotation
TRUE ; 5: smoothing
TRUE ; 6: antialias
FALSE ; 7: work_on_copy
0 ; 8: curve_type
3 ; 9: argc_upper_point_x
(float-array 0 0.5 1) ; 10: upper_point_x
3 ; 11: argc_upper_point_y
(float-array 0.5 (- 0.5 VarCorAngle) 0.5) ; 12: upper_point_y
3 ; 13: argc_lower_point_x
(float-array 0 0.5 1) ; 14: lower_point_x
3 ; 15: argc_lower_point_y
(float-array 0.5 (+ 0.5 VarCorAngle) 0.5) ; 16: lower_point_y
256 ; 17: argc_upper_val_y
VarFakeArray ; 18: upper_val_y
256 ; 19: argc_lower_val_y
VarFakeArray ; 20: lower_val_y
)
(gimp-displays-flush)
; d'ecoupage du surplus
(if (= VarMasque TRUE)
(begin
(set! VarCropLargeur (* VarCropLargeur 0.5))
(set! VarCropHauteur (* VarCropHauteur 0.5))
)
)
(gimp-image-crop
VarImage
(- VarLargeur (* VarCropLargeur 2))
(- VarHauteur (* VarCropHauteur 2))
VarCropLargeur
VarCropHauteur
)
(gimp-displays-flush)
)
)
; flou zoom cin'etique
(if (> VarZoomTrunc 0)
(begin
(plug-in-mblur
1 ; run_mode (noninteractive=1)
VarImage ; image
VarDrawable ; drawable
2 ; type (zoom=2)
VarZoomTrunc ; length (longueur)
0 ; angle (inutile avec zoom)
VarCentreX ; center_x
VarCentreY ; center_y
)
(gimp-displays-flush)
)
)
; Luminosit'e
(gimp-levels-stretch VarDrawable)
(if (> VarLumiere 0)
(begin
(gimp-curves-spline VarDrawable 0 6 (spline VarLumiere))
)
)
; Vignettage
(if (> VarVignettage 0)
(begin
(gimp-context-set-foreground '(0 0 0))
(gimp-context-set-background '(255 255 255))
(gimp-image-add-layer VarImage VarCalque -1)
(gimp-drawable-fill VarCalque WHITE-FILL)
(gimp-edit-blend
VarCalque; drawable
FG-BG-RGB-MODE ; blend_mode
NORMAL ; paint_mode
GRADIENT-RADIAL ; gradient_type
100 ; opacity
0 ; offset
REPEAT-NONE ; repeat
TRUE ; reverse
0 ; supersample
0 ; max_depth
0 ; threshold
TRUE ; dither
VarCentreX ; x1
VarCentreY ; y1
(* VarLargeur 0.9) ; x2
(* VarHauteur 0.9) ; y2
)
(gimp-image-flatten VarImage)
; WARNING: gimp-edit-blend change le Drawable !
(set! VarDrawable (car (gimp-image-get-active-drawable VarImage)))
(gimp-displays-flush)
)
)
; marge/masque
(if (= VarMasque TRUE)
(begin
(script-fu-fuzzy-border
;0 ; run_mode indiqu'e par erreur dans le navigateur !
VarImage ; image
VarDrawable ; drawable
'(0 0 0) ; color
VarMarge ; value, taille
TRUE ; toggle, bord flou
5 ; value, granularit'e
FALSE; toggle, ombre
0 ; value; poid de l'ombre
FALSE ; toggle, travail copie
TRUE ; toggle; aplatir l'image
)
(gimp-image-flatten VarImage)
; WARNING: script-fu-fuzzy-border change le Drawable !
(set! VarDrawable (car (gimp-image-get-active-drawable VarImage)))
(gimp-displays-flush)
)
)
; conversion en gris si origine gris
(if (= VarGris TRUE)
(begin
(gimp-image-convert-grayscale VarImage)
)
)
; restauration des couleurs de fond et de plume
(gimp-context-set-foreground VarForeOrigine)
(gimp-context-set-background VarBackOrigine)
; fin groupe d'annulation
(gimp-undo-push-group-end VarImage)
; rafraichissement de l'affichage
(gimp-displays-flush)
)
(define float-array
(lambda stuff
(letrec ((kernel (lambda (array pos remainder)
(if (null? remainder) array
(begin
(aset array pos (car remainder))
(kernel array (+ pos 1) (cdr remainder))
)
))))
(kernel (cons-array (length stuff) 'double) 0 stuff)
)
)
)
(define (set-pt a index x y)
(begin
(aset a (* index 2) x)
(aset a (+ (* index 2) 1) y)
)
)
(define (spline VarLumiere)
(let*
(
(a (cons-array 6 'byte))
(VarSplit (- 128 (* 12.8 VarLumiere)))
)
(set-pt a 0 0 0)
(set-pt a 1 VarSplit (- 255 VarSplit))
(set-pt a 2 255 255)
a
)
)
|