; FU_color-invert_invert.scm ; version 3.1 [gimphelp.org] ; last modified/tested by Paul Sherman ; 05/05/2012 on GIMP-2.8 ; ; ------------------------------------------------------------------ ; Original information --------------------------------------------- ; ; The GIMP -- an image manipulation program ; Copyright (C) 1995 Spencer Kimball and Peter Mattis ; ; Lasm's color invert effect script for GIMP 2.4 ; Original author: lasm ; ; Author statement: ; ;;; Welcome to the Grandmother's Light Invert ;;; Dedication - to my mother (1917-2002) in loving memory ;;; Grandmother's Color Invert:: ;;; This effect is fully reversible. ;;; Another quality script brought to you by the Grandmother Coffee House production. ;;; Created in the Special Palindrome Day of the century 20022002 ; ; 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. ; ; End original information ------------------------------------------ ;-------------------------------------------------------------------- (define (FU-color-invert invert-type img inLayer) (define (copylayer layer layername) (let* ((new (car(gimp-layer-copy layer 1)))) ; Add an alpha channel (gimp-item-set-name new layername) new ) ) (let* ((invert-layer (copylayer inLayer "Invert Layer"))) (gimp-image-undo-group-start img) (gimp-image-insert-layer img invert-layer 0 -1) (if (= invert-type 0) (gimp-invert inLayer) (gimp-invert invert-layer)) (gimp-layer-set-mode invert-layer (cond ((= invert-type 0) HUE-MODE) ((= invert-type 1) HUE-MODE) ((= invert-type 2) NORMAL-MODE) ((= invert-type 3) DARKEN-ONLY-MODE) ((= invert-type 4) VALUE-MODE))) (gimp-item-set-name (car (gimp-image-merge-down img invert-layer EXPAND-AS-NECESSARY)) (cond ((= invert-type 0) "GM Light Invert") ((= invert-type 1) "GM Color Only Invert") ((= invert-type 2) "GM Simple Color Invert") ((= invert-type 3) "GM Solarize") ((= invert-type 4) "GM Vivid V-Invert"))) (gimp-image-undo-group-end img) (gimp-displays-flush) ) ) (script-fu-register "FU-color-invert 0" "/Script-Fu/Color/Invert/Light Invert" "Version 2.0a\nLasm's color invert effect. This turns the photo into a photo negative without changing the colors and the effect is reversible.\n\nCycle through all 3 effects in random order and you will arrive back to the original image" "lasm" "Copyright 2002-2005, lasm" "February 20, 2002" "RGB*" SF-IMAGE "The Image" 0 SF-DRAWABLE "The Layer" 0 ) (script-fu-register "FU-color-invert 1" "/Script-Fu/Color/Invert/Color Only Invert" "Version 2.0a\nLasm's color invert effect. This inverts color only, leaving brightness alone on any RGB image and the effect is reversible.\n\nCycle through all 3 effects in random order and you will arrive back to the original image" "lasm" "Copyright 2002-2005, lasm" "February 20, 2002" "RGB*" SF-IMAGE "The Image" 0 SF-DRAWABLE "The Layer" 0 ) (script-fu-register "FU-color-invert 2" "/Script-Fu/Color/Invert/Simple Color Invert" "Version 2.0a\nLasm's color invert effect. This is vanilla color invert and the effect is reversible. \n\nCycle through all 3 effects in random order and you will arrive back to the original image" "lasm" "Copyright 2002-2005, lasm" "February 20, 2002" "RGB*" SF-IMAGE "The Image" 0 SF-DRAWABLE "The Layer" 0 ) (script-fu-register "FU-color-invert 3" "/Script-Fu/Color/Invert/Solarize Simple" "Version 2.0a\nThe solarize effect is irreversible.\n...Although you can Undo :)" "lasm" "Copyright 2002-2005, lasm" "November 19, 2005" "RGB*" SF-IMAGE "The Image" 0 SF-DRAWABLE "The Layer" 0 ) (script-fu-register "FU-color-invert 4" "/Script-Fu/Color/Invert/Vivid V-Invert" "Version 2.0a\nProduces a highly saturated version of v-invert. Toggle it twice and it will stay in the V-invert mode, but the effect is not reversible to the original image.\n...Although you can Undo :)" "lasm" "Copyright 2002-2005, lasm" "November 21, 2005" "RGB*" SF-IMAGE "The Image" 0 SF-DRAWABLE "The Layer" 0 )