web-dev-qa-db-ja.com

GIMPスナップにResynthesizerプラグインをインストールする方法は?

Ubuntu StoreからUbuntu 18.04にGimp 2.10.6スナップをインストールしました。それにResynthesizerプラグインを追加します。

私がしたことは:

  1. このGitHubリポジトリからZipファイルをダウンロードしました: https://github.com/bootchk/resynthesizer

  2. pythonプラグインスクリプトを以下から抽出しました。

    / home/aresminos/resynthesizer-master/PluginScripts

    に:

    /home/aresminos/snap/gimp/47/.config/GIMP/2.10/plug-ins

これで、Filter> Enhance> Heal Selectionを使用しようとすると、次のエラーポップアップが表示されます。

An error occurred running python_fu_heal_selection
error: procedure not found

Traceback (most recent call last):
  File "/snap/gimp/47/usr/lib/gimp/2.0/python/gimpfu.py", line 740, in response
    dialog.res = run_script(params)
  File "/snap/gimp/47/usr/lib/gimp/2.0/python/gimpfu.py", line 361, in run_script
    return apply(function, params)
  File "/home/aresminos/snap/gimp/47/.config/GIMP/2.10/plug-ins/plugin-heal-selection.py", line 148, in heal_selection
    pdb.plug_in_resynthesizer(timg, tdrawable, 0,0, useBorder, work_drawable.ID, -1, -1, 0.0, 0.117, 16, 500)
error: procedure not found

また、私はこのポップアップを取得します:

GIMP Message

Calling error for procedure 'gimp-procedural-db-proc-info':
Procedure 'plug-in-resynthesizer' not found

そして、私はこのポップアップを取得します:

GIMP Message

Plug-in 'Heal selection' left image undo in inconsistent state, closing open undo groups.

プラグインを正しくインストールするにはどうすればよいですか?

3
Kristijan Zic

Pythonファイルはありますが、メインの実行可能ファイルがありません。 https://www.gimp-forum.net/attachment.php?aid=171 からZipファイルをダウンロードして抽出します

2
Eroraf