Gimpでキャンバス内の特定のXY位置にレイヤーを移動するにはどうすればよいですか?
現在、私が見つけることができる唯一の方法は、ガイドまたはマウスの位置、あるいはその両方で眼球を見つけることです。正確なX座標とY座標を指定したい。
面倒なので、Gimpには含まれていません。設計時に要素を整列する適切な方法ではありませんが、ショートカットとして役立つ場合があることは認識しています。とにかく、最良の(正しい)アプローチはガイドを使用することです。
A)ステップ1-ガイドを作成する
または、ルーラーからドラッグしてガイドを作成することもできます。
B)ステップ2-キャンバスを移動します
移動ツールを使用できます。
設計原則の1つは、プロジェクト全体で物事を調整する必要があることです。配置(ガイド)の数を減らすと、デザインがすっきりします。これが、gimpに正確な座標を指定するツールが含まれていない理由だと思います。この設計原則に従いたい場合、正確な座標を1つずつ指定するのは面倒な作業になります。
これを行うためのスクリプトがあり、GIMPプラグインレジストリからダウンロードできます。いわゆる:
スクリプトをWindowsでは%USERPROFILE\.gimp-2.8\scripts
ディレクトリ、OS Xでは~/Library/Application Support/GIMP/2.8/scripts
、Linuxでは~/.gimp-2.8/scripts
に移動します。 ( 公式指示 )
クリックFilters
-> Script-Fu
-> Refresh scripts
。
新しいメニュー項目がLayer
メニューMove to
の下部に表示されます。
GIMP 2.6.11を使用しています。
Pythonのこれらの行を使用すると、アクティブレイヤーを(32、64)などの絶対位置にPythonコンソールから移動できます。
>>> x_new = 32
>>> y_new = 64
>>> img = _[0]
>>> layer = img.active_layer
>>> x_off, y_off = layer.offsets
>>> pdb.gimp_layer_translate(layer, x_new - x_off, y_new - y_off)
または、レイヤーのコンテンツのみを移動する場合:
右クリック、[レイヤー]> [変形]> [オフセット]
またはShft + Ctrl + O
Gimp v.2.10以降、これを行うための非常に便利な方法があります。
移動するレイヤーをダブルクリックします(またはレイヤーを右クリックして[レイヤー属性の編集]を選択します)。
「レイヤー属性の編集」ダイアログが表示され、必要に応じてX/Yオフセットを変更できます
そのように簡単です! :)
編集:
@Michaelが私の回答へのコメントでそれについて尋ねたように、指定したx、yオフセットですべての画像レイヤーを移動するスクリプトを追加しています。
これを機能させるには、Gimpスクリプトフォルダーにファイルを作成する必要があります(必要に応じて、このリファレンスを参照してください: または )以下の内容:
; This script 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 script 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.
;; Command is installed in "Layer->Move all layers..."
;;
;; The purpose of this script is to move all image layers by specified x,y offsets
;; X and Y offset parameters must be provided (use integer numbers as values)
;;
(define (dn-move-all-layers orig-image drawable
x-offset y-offset)
(define (get-all-layers img)
(let* (
(all-layers (gimp-image-get-layers img))
(i (car all-layers))
(bottom-to-top ())
)
(set! all-layers (cadr all-layers))
(while (> i 0)
(set! bottom-to-top (append bottom-to-top (cons (aref all-layers (- i 1)) '())))
(set! i (- i 1))
)
bottom-to-top
)
)
(define (move-layer orig-image layer-id offset-x offset-y)
(gimp-layer-set-offsets
layer-id
offset-x
offset-y
)
)
(let* (
(layers nil)
(layerpos 1)
(layer-id "")
(x-os 0)
(y-os 0)
(orig-selection 0)
)
(gimp-image-undo-disable orig-image)
(set! orig-selection (car (gimp-selection-save orig-image)))
(gimp-selection-none orig-image)
(set! x-os x-offset)
(set! y-os y-offset)
(set! layers (get-all-layers orig-image))
(while (pair? layers)
(move-layer orig-image (car layers) x-os y-os)
(set! layers (cdr layers))
(set! layerpos (+ layerpos 1))
)
(gimp-displays-flush)
(gimp-selection-load orig-selection)
(gimp-image-remove-channel orig-image orig-selection)
(gimp-image-undo-enable orig-image)
)
)
(script-fu-register "dn-move-all-layers"
"Move all layers..."
"Move each layer by specified x,y offsets."
"danicotra"
"danicotra"
"08/08/2019"
""
SF-IMAGE "Input image" 0
SF-DRAWABLE "Drawable" 0
SF-VALUE "X offset" "0"
SF-VALUE "Y offset" "0"
)
(script-fu-menu-register "dn-move-all-layers"
"<Image>/Layer/")
正しく実行すると、「レイヤー」メニューに「すべてのレイヤーを移動...」という新しいコマンドが表示され、それを起動すると、XオフセットとYオフセットを決定するためのダイアログが表示されます。それでおしまい。