gimp

Script-fuで、画像を50%にリサイズ(初めの一歩)

日本語リソースが少なすぎて時間かかった。 (define (script-fu-resize image drawable) (let* ( (org-width (car (gimp-image-width image))) (org-height (car (gimp-image-height image))) (cnv-width (/ org-width 2)) (cnv-height (/ org-height 2)) ) …