1997-11-24 22:05:25 +00:00
|
|
|
; The GIMP -- an image manipulation program
|
|
|
|
; Copyright (C) 1995 Spencer Kimball and Peter Mattis
|
2004-01-07 13:25:00 +00:00
|
|
|
;
|
1997-11-24 22:05:25 +00:00
|
|
|
; Beveled pattern hrule for web pages
|
|
|
|
; Copyright (C) 1997 Federico Mena Quintero
|
|
|
|
; federico@nuclecu.unam.mx
|
2004-01-07 13:25:00 +00:00
|
|
|
;
|
1997-11-24 22:05:25 +00:00
|
|
|
; 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.
|
2004-01-07 13:25:00 +00:00
|
|
|
;
|
1997-11-24 22:05:25 +00:00
|
|
|
; 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.
|
2004-01-07 13:25:00 +00:00
|
|
|
;
|
1997-11-24 22:05:25 +00:00
|
|
|
; 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-beveled-pattern-hrule width height pattern)
|
2004-09-22 17:27:20 +00:00
|
|
|
(let* ((img (car (gimp-image-new width height RGB)))
|
|
|
|
(background (car (gimp-layer-new img
|
|
|
|
width height RGB-IMAGE
|
|
|
|
"Hrule" 100 NORMAL-MODE)))
|
|
|
|
(bumpmap (car (gimp-layer-new img
|
|
|
|
width height RGBA-IMAGE
|
|
|
|
"Bumpmap" 100 NORMAL-MODE))))
|
|
|
|
|
|
|
|
(gimp-context-push)
|
|
|
|
|
1999-10-17 00:07:55 +00:00
|
|
|
(gimp-image-undo-disable img)
|
1997-11-24 22:05:25 +00:00
|
|
|
(gimp-image-add-layer img background -1)
|
|
|
|
(gimp-image-add-layer img bumpmap -1)
|
|
|
|
|
|
|
|
; Create pattern layer
|
|
|
|
|
2004-09-22 18:43:09 +00:00
|
|
|
(gimp-context-set-background '(0 0 0))
|
2003-10-16 12:47:33 +00:00
|
|
|
(gimp-edit-fill background BACKGROUND-FILL)
|
1997-11-24 22:05:25 +00:00
|
|
|
(gimp-patterns-set-pattern pattern)
|
2004-01-07 13:25:00 +00:00
|
|
|
(gimp-edit-bucket-fill background PATTERN-BUCKET-FILL NORMAL-MODE 100 0 FALSE 0 0)
|
1997-11-24 22:05:25 +00:00
|
|
|
|
|
|
|
; Create bumpmap layer
|
|
|
|
|
2003-10-16 12:47:33 +00:00
|
|
|
(gimp-edit-fill bumpmap BACKGROUND-FILL)
|
1997-11-24 22:05:25 +00:00
|
|
|
|
2004-09-22 18:43:09 +00:00
|
|
|
(gimp-context-set-background '(127 127 127))
|
2004-02-03 11:46:27 +00:00
|
|
|
(gimp-rect-select img 1 1 (- width 2) (- height 2) CHANNEL-OP-REPLACE FALSE 0)
|
2003-10-16 12:47:33 +00:00
|
|
|
(gimp-edit-fill bumpmap BACKGROUND-FILL)
|
1997-11-24 22:05:25 +00:00
|
|
|
|
2004-09-22 18:43:09 +00:00
|
|
|
(gimp-context-set-background '(255 255 255))
|
2004-02-03 11:46:27 +00:00
|
|
|
(gimp-rect-select img 2 2 (- width 4) (- height 4) CHANNEL-OP-REPLACE FALSE 0)
|
2003-10-16 12:47:33 +00:00
|
|
|
(gimp-edit-fill bumpmap BACKGROUND-FILL)
|
1997-11-24 22:05:25 +00:00
|
|
|
|
|
|
|
(gimp-selection-none img)
|
|
|
|
|
|
|
|
; Bumpmap
|
|
|
|
|
|
|
|
(plug-in-bump-map 1 img background bumpmap 135 45 2 0 0 0 0 TRUE FALSE 0)
|
|
|
|
|
|
|
|
(gimp-image-set-active-layer img background)
|
|
|
|
(gimp-image-remove-layer img bumpmap)
|
|
|
|
|
1999-10-17 00:07:55 +00:00
|
|
|
(gimp-image-undo-enable img)
|
2004-09-22 17:27:20 +00:00
|
|
|
(gimp-display-new img)
|
|
|
|
|
|
|
|
(gimp-context-pop)))
|
1997-11-24 22:05:25 +00:00
|
|
|
|
|
|
|
|
|
|
|
(script-fu-register "script-fu-beveled-pattern-hrule"
|
2003-08-11 17:14:32 +00:00
|
|
|
_"<Toolbox>/Xtns/Script-Fu/Web Page Themes/Beveled Pattern/_Hrule..."
|
1997-11-24 22:05:25 +00:00
|
|
|
"Beveled pattern hrule"
|
|
|
|
"Federico Mena Quintero"
|
|
|
|
"Federico Mena Quintero"
|
|
|
|
"July 1997"
|
|
|
|
""
|
2000-04-26 18:07:41 +00:00
|
|
|
SF-ADJUSTMENT _"Width" '(480 5 1500 1 10 0 1)
|
|
|
|
SF-ADJUSTMENT _"Height" '(16 1 100 1 10 0 1)
|
|
|
|
SF-PATTERN _"Pattern" "Wood")
|