2006-12-09 21:33:38 +00:00
|
|
|
; GIMP - The GNU Image Manipulation Program
|
2003-02-10 15:03:04 +00:00
|
|
|
; Copyright (C) 1995 Spencer Kimball and Peter Mattis
|
2006-10-16 01:08:54 +00:00
|
|
|
;
|
2003-02-10 15:03:04 +00:00
|
|
|
; Based on select-to-brush by
|
2006-10-16 01:08:54 +00:00
|
|
|
; Copyright (c) 1997 Adrian Likins aklikins@eos.ncsu.edu
|
2003-02-10 15:03:04 +00:00
|
|
|
; Author Cameron Gregory, http://www.flamingtext.com/
|
|
|
|
;
|
|
|
|
; Takes the current selection, saves it as a pattern and makes it the active
|
|
|
|
; pattern
|
|
|
|
;
|
2009-01-17 22:28:01 +00:00
|
|
|
; This program is free software: you can redistribute it and/or modify
|
2003-02-10 15:03:04 +00:00
|
|
|
; it under the terms of the GNU General Public License as published by
|
2009-01-17 22:28:01 +00:00
|
|
|
; the Free Software Foundation; either version 3 of the License, or
|
2003-02-10 15:03:04 +00:00
|
|
|
; (at your option) any later version.
|
2006-10-16 01:08:54 +00:00
|
|
|
;
|
2003-02-10 15:03:04 +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.
|
2006-10-16 01:08:54 +00:00
|
|
|
;
|
2003-02-10 15:03:04 +00:00
|
|
|
; You should have received a copy of the GNU General Public License
|
2018-07-11 23:27:07 +02:00
|
|
|
; along with this program. If not, see <https://www.gnu.org/licenses/>.
|
2003-02-10 15:03:04 +00:00
|
|
|
|
|
|
|
|
|
|
|
(define (script-fu-selection-to-pattern image drawable desc filename)
|
|
|
|
|
2006-10-16 01:08:54 +00:00
|
|
|
(let* (
|
2008-01-15 05:15:08 +00:00
|
|
|
(selection-width 0)
|
|
|
|
(selection-height 0)
|
|
|
|
(selection-bounds 0)
|
|
|
|
(select-offset-x 0)
|
|
|
|
(select-offset-y 0)
|
|
|
|
(pattern-draw-type 0)
|
|
|
|
(pattern-image-type 0)
|
|
|
|
(pattern-image 0)
|
|
|
|
(pattern-draw 0)
|
|
|
|
(filename2 0)
|
2006-10-16 01:08:54 +00:00
|
|
|
)
|
|
|
|
|
2004-01-10 15:16:58 +00:00
|
|
|
(if (= (car (gimp-selection-is-empty image)) TRUE)
|
|
|
|
(begin
|
2006-10-16 01:08:54 +00:00
|
|
|
(set! selection-width (car (gimp-drawable-width drawable)))
|
|
|
|
(set! selection-height (car (gimp-drawable-height drawable)))
|
|
|
|
)
|
2004-01-10 15:16:58 +00:00
|
|
|
(begin
|
2006-10-16 01:08:54 +00:00
|
|
|
(set! selection-bounds (gimp-drawable-mask-bounds drawable))
|
|
|
|
(set! select-offset-x (cadr selection-bounds))
|
|
|
|
(set! select-offset-y (caddr selection-bounds))
|
|
|
|
(set! selection-width (- (cadr (cddr selection-bounds)) select-offset-x))
|
|
|
|
(set! selection-height (- (caddr (cddr selection-bounds)) select-offset-y))
|
|
|
|
)
|
|
|
|
)
|
2003-02-10 15:03:04 +00:00
|
|
|
|
2004-01-10 15:16:58 +00:00
|
|
|
(if (= (car (gimp-drawable-has-alpha drawable)) TRUE)
|
|
|
|
(set! pattern-draw-type RGBA-IMAGE)
|
2006-10-16 01:08:54 +00:00
|
|
|
(set! pattern-draw-type RGB-IMAGE)
|
|
|
|
)
|
2003-02-10 15:03:04 +00:00
|
|
|
|
2004-01-10 15:16:58 +00:00
|
|
|
(set! pattern-image-type RGB)
|
2003-02-10 15:03:04 +00:00
|
|
|
|
2004-01-10 15:16:58 +00:00
|
|
|
(set! pattern-image (car (gimp-image-new selection-width selection-height
|
2006-10-16 01:08:54 +00:00
|
|
|
pattern-image-type)))
|
2003-02-10 15:03:04 +00:00
|
|
|
|
2004-01-10 15:16:58 +00:00
|
|
|
(set! pattern-draw
|
2006-10-16 01:08:54 +00:00
|
|
|
(car (gimp-layer-new pattern-image selection-width selection-height
|
2017-01-09 20:37:30 +01:00
|
|
|
pattern-draw-type "Pattern" 100 LAYER-MODE-NORMAL)))
|
2003-02-10 15:03:04 +00:00
|
|
|
|
2017-01-09 20:37:30 +01:00
|
|
|
(gimp-drawable-fill pattern-draw FILL-TRANSPARENT)
|
2003-02-10 15:03:04 +00:00
|
|
|
|
2011-03-02 02:55:43 -05:00
|
|
|
(gimp-image-insert-layer pattern-image pattern-draw 0 0)
|
2003-02-10 15:03:04 +00:00
|
|
|
|
2004-01-10 15:16:58 +00:00
|
|
|
(gimp-edit-copy drawable)
|
2003-02-10 15:03:04 +00:00
|
|
|
|
2004-01-10 15:16:58 +00:00
|
|
|
(let ((floating-sel (car (gimp-edit-paste pattern-draw FALSE))))
|
|
|
|
(gimp-floating-sel-anchor floating-sel))
|
2003-02-10 15:03:04 +00:00
|
|
|
|
2006-10-20 17:55:14 +00:00
|
|
|
(set! filename2 (string-append gimp-directory
|
|
|
|
"/patterns/"
|
2006-10-16 01:08:54 +00:00
|
|
|
filename
|
|
|
|
(number->string image)
|
|
|
|
".pat"))
|
2003-02-10 15:03:04 +00:00
|
|
|
|
2004-01-10 15:16:58 +00:00
|
|
|
(file-pat-save 1 pattern-image pattern-draw filename2 "" desc)
|
|
|
|
(gimp-patterns-refresh)
|
2004-09-23 11:44:32 +00:00
|
|
|
(gimp-context-set-pattern desc)
|
2003-02-10 15:03:04 +00:00
|
|
|
|
2004-01-10 15:16:58 +00:00
|
|
|
(gimp-image-delete pattern-image)
|
2006-10-16 01:08:54 +00:00
|
|
|
(gimp-displays-flush)
|
|
|
|
)
|
|
|
|
)
|
2003-02-10 15:03:04 +00:00
|
|
|
|
|
|
|
(script-fu-register "script-fu-selection-to-pattern"
|
2006-10-16 01:08:54 +00:00
|
|
|
_"To _Pattern..."
|
|
|
|
_"Convert a selection to a pattern"
|
|
|
|
"Cameron Gregory <cameron@bloke.com>"
|
|
|
|
"Cameron Gregory"
|
|
|
|
"09/02/2003"
|
|
|
|
"RGB* GRAY*"
|
|
|
|
SF-IMAGE "Image" 0
|
|
|
|
SF-DRAWABLE "Drawable" 0
|
|
|
|
SF-STRING _"Pattern name" "My Pattern"
|
|
|
|
SF-STRING _"File name" "mypattern"
|
|
|
|
)
|