数百枚の写真があります。各写真は 1 つのオブジェクトです。そして、各写真で同じ手順を繰り返します。開いて、領域を選択します。トリミング、サイズ変更、明るさの修正、保存。
プロセスを自動化する私の試み: スクリプトを作成し、ホットキーに掛けます。
(define (script-fu-cut800 inText inFont inFontSize inTextColor)
; get the coordinates of allocation
(gimp-image-get-selection (image))
(let * (
(original-left (car (????)))
(original-top (car (????)))
(original-width (car (gimp-image-width image)))
(original-height (car (gimp-image-height image)))
(new-width (- original-width (+ right left)))
(new-height (- original-height (+ top bottom)))
)
; crop the selected image
(gimp-image-crop image new-width new-height left top)
; resize to 800 * 800
(gimp-image-resize image 800 800 0 0)
; open dialogue correction levels
(?????)
; save as JPG 80% compression of the same name
(file-jpeg-save ????)
))