web-dev-qa-db-ja.com

レイヤーをGimpの特定のX、Y位置に移動する

Gimpでキャンバス内の特定のXY位置にレイヤーを移動するにはどうすればよいですか?

現在、私が見つけることができる唯一の方法は、ガイドまたはマウスの位置、あるいはその両方で眼球を見つけることです。正確なX座標とY座標を指定したい。

59
Scott

面倒なので、Gimpには含まれていません。設計時に要素を整列する適切な方法ではありませんが、ショートカットとして役立つ場合があることは認識しています。とにかく、最良の(正しい)アプローチはガイドを使用することです。


A)ステップ1-ガイドを作成する

  1. 画像->ガイド->新しいガイドに移動します
  2. 必要かどうかを指定し、水平または垂直ガイド
  3. ピクセル数を指定
  4. 別の水平または垂直ガイドに対して手順を繰り返します(幅と高さを指定するためにさらにガイドを実行することもできます)

または、ルーラーからドラッグしてガイドを作成することもできます。

  1. ガイドを(上定規から開始して)下にドラッグして、目的のY座標にします。
  2. ガイドを左のルーラーから始めて、目的のX座標までドラッグします。

B)ステップ2-キャンバスを移動します

移動ツールを使用できます。

  1. レイヤーを選択
  2. [ツール]-> [変形ツール]-> [移動]に移動します
  3. レイヤーをガイドにドラッグします。 Gimpは正確なピクセルであなたに手を与えるでしょう。

設計原則の1つは、プロジェクト全体で物事を調整する必要があることです。配置(ガイド)の数を減らすと、デザインがすっきりします。これが、gimpに正確な座標を指定するツールが含まれていない理由だと思います。この設計原則に従いたい場合、正確な座標を1つずつ指定するのは面倒な作業になります。

32
toto_tico
  1. ピック enter image description here (整列ツール)。
  2. 成功する Relative toImage
  3. レイヤーをクリックします(キャンバス内)。
  4. OffsetフィールドにXを入力します。
  5. Distribute/ enter image description here (左矢印)。
  6. OffsetフィールドにYを入力します。
  7. Distribute/ enter image description here (上矢印)。

それでおしまい!

24
David

これを行うためのスクリプトがあり、GIMPプラグインレジストリからダウンロードできます。いわゆる:

レイヤーを(ダウンロード)に移動

インストールするには:

  1. スクリプトをWindowsでは%USERPROFILE\.gimp-2.8\scriptsディレクトリ、OS Xでは~/Library/Application Support/GIMP/2.8/scripts、Linuxでは~/.gimp-2.8/scriptsに移動します。 ( 公式指示

  2. クリックFilters-> Script-Fu-> Refresh scripts

  3. 新しいメニュー項目がLayerメニューMove toの下部に表示されます。

20
garyb

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

11
Nicolas Kaiser

Gimp v.2.10以降、これを行うための非常に便利な方法があります。

  1. 移動するレイヤーをダブルクリックします(またはレイヤーを右クリックして[レイヤー属性の編集]を選択します)。

  2. 「レイヤー属性の編集」ダイアログが表示され、必要に応じてX/Yオフセットを変更できます

そのように簡単です! :)

Edit Layer X/Y Offsets Attributes

編集:

@Michaelが私の回答へのコメントでそれについて尋ねたように、指定したx、yオフセットですべての画像レイヤーを移動するスクリプトを追加しています。

これを機能させるには、Gimpスクリプトフォルダーにファイルを作成する必要があります(必要に応じて、このリファレンスを参照してください: here または here )以下の内容:

; 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オフセットを決定するためのダイアログが表示されます。それでおしまい。

3
danicotra