File: resize-frames.scm

package info (click to toggle)
xpenguins 2.2-2
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 1,668 kB
  • ctags: 287
  • sloc: ansic: 3,259; sh: 330; lisp: 118; makefile: 99
file content (70 lines) | stat: -rw-r--r-- 2,728 bytes parent folder | download | duplicates (8)
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
; resize-frames - resize an xpenguins image with no bleeding between frames
; Copyright (C) 2001 Robin Hogan
;
; 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.

(define (script-fu-resize-frames img
				 drawable
				 originalWidth
				 originalHeight
				 newWidth
				 newHeight)
  (let* ((imageWidth (car (gimp-image-width img)))
	 (imageHeight (car (gimp-image-height img)))
	 (xframes (/ imageWidth originalWidth))
	 (yframes (/ imageHeight originalHeight))
	 (x 0)
	 (y 0)
	 (newx 0)
	 (newy 0)
	 (newImageWidth (* newWidth xframes))
	 (newImageHeight (* newHeight yframes))
	 (current (car (gimp-image-get-active-layer img))))
       
    (gimp-image-undo-disable img)
    (gimp-layer-set-visible current 0)

    (while (< y yframes)
	   (while (< x xframes)
		  (set! newLayer (car (gimp-layer-copy current TRUE)))
		  (gimp-layer-set-visible newLayer 1)
		  (gimp-image-add-layer img newLayer (+ 1 x (* y xframes)))
		  (gimp-layer-resize newLayer originalWidth originalHeight
				     ( - (* x originalWidth)) ( - (* y originalHeight)))
		  (gimp-layer-scale newLayer newWidth newHeight FALSE)
		  (gimp-layer-set-offsets newLayer (* x newWidth) (* y newHeight))
		  (set! x (+ x 1)))
	   (set! y (+ y 1))
	   (set! x 0))
    (gimp-layer-delete current)
    (gimp-image-resize img (* xframes newWidth) (* yframes newHeight) 0 0)
    (gimp-image-merge-visible-layers img 1)

    (gimp-image-undo-enable img)
    (gimp-displays-flush)))

(script-fu-register "script-fu-resize-frames"
		    _"<Image>/Script-Fu/Utils/Resize framed image..."
		    "Resize an image frame by frame to prevent bleeding between frames. This is useful for creating themes for XPenguins."
		    "Robin Hogan <R.J.Hogan@reading.ac.uk>"
		    "Robin Hogan"
		    "September 2001"
		    "RGB*"
		    SF-IMAGE "Image" 0
		    SF-DRAWABLE "Drawable" 0
		    SF-ADJUSTMENT _"Original frame width" '(32 1 10000 1 10 1 1)
		    SF-ADJUSTMENT _"Original frame height" '(32 1 10000 1 10 1 1)
		    SF-ADJUSTMENT _"New frame width" '(32 1 10000 1 10 1 1)
		    SF-ADJUSTMENT _"New frame height" '(32 1 10000 1 10 1 1))