Script-fu: 矩形選択範囲からImagemagick crop用のgeometry表現を得る メニューから 選択>geometry for Imagemagick crop を選ぶと次のスクリーンショットのように表示されます。 ※ちなみに Imagemagick そのものにも似たような機能はあるんですが、なんとなく自作してみました。 (define (anbt-geometry-for-im-crop:selection-bounds img) (let* ((bounds (gimp-selection-bounds img)) (x1 (nth 1 bounds)) (y1 (nth 2 bounds)) (x2 (nth 3 bounds)) (y2 (nth 4 bounds)) ) (list x1 y1 (- x2 x1) (- y2 y1)))) (define (a