https://antumdeluge.wordpress.com/2017/12/20/export-all-open-images-in-gimp/
- saveall.scm
```
; 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.
(define (script-fu-save-all-images)
(let* ((i (car (gimp-image-list)))
(image))
(while (> i 0)
(set! image (vector-ref (cadr (gimp-image-list)) (- i 1)))
(gimp-file-save RUN-NONINTERACTIVE
image
(car (gimp-image-get-active-layer image))
(car (gimp-image-get-filename image))
(car (gimp-image-get-filename image)))
(gimp-image-clean-all image)
(set! i (- i 1)))))
(script-fu-register "script-fu-save-all-images"
"<Image>/File/Save ALL"
"Save all opened images"
"Saul Goode"
"Saul Goode"
"11/21/2006"
""
)
```
'tech' 카테고리의 다른 글
21/08/07 AutoHotKey : Loop (0) | 2021.08.07 |
---|---|
21/08/06 Pulover's Macro Creator v5 Tutorial (0) | 2021.08.06 |
21/08/06 Slicing Images Using GIMP - The Manual and Semi-Automatical Way (0) | 2021.08.06 |
21/08/06 Advanced ways to create guides in GIMP (0) | 2021.08.06 |
21/08/06 How to install plug-ins on Gimp - Tutorial (1080p) (0) | 2021.08.06 |