「Inkscape」の版間の差分

提供: ArchWiki
ナビゲーションに移動 検索に移動
(update Pkg/AUR templates)
(→‎トラブルシューティング: 英語版にあわせて節を削除)
 
(2人の利用者による、間の2版が非表示)
2行目: 2行目:
 
[[de:Inkscape]]
 
[[de:Inkscape]]
 
[[en:Inkscape]]
 
[[en:Inkscape]]
[http://inkscape.org/ Inkscape] はベクタ画像エディタアプリケーションです。フリーのソフトウェアライセンス、GNU GPL で配布されています。XML, SVG, CSS などの標準に完全に準拠したグラフィックツールとなることを目標としています [https://ja.wikipedia.org/wiki/Inkscape]。
+
[https://inkscape.org/ Inkscape] はベクタ画像エディタアプリケーションです。フリーのソフトウェアライセンス、GNU GPL で配布されています。XML, SVG, CSS などの標準に完全に準拠したグラフィックツールとなることを目標としています [https://ja.wikipedia.org/wiki/Inkscape]。
   
 
== インストール ==
 
== インストール ==
{{pkg|inkscape}} は[[公式リポジトリ]]からインストールできます。開発版は [[AUR]] の {{AUR|inkscape-gtk3-bzr}}{{Broken package link|{{aur-mirror|inkscape-gtk3-bzr}}}} から利用可能です。
+
{{pkg|inkscape}} は[[公式リポジトリ]]からインストールできます。開発版は [[AUR]] の {{AUR|inkscape-git}} から利用可能です。
   
 
==トラブルシューティング==
 
==トラブルシューティング==
   
  +
=== スペースキーとマウスでのスクロールが動作しない ===
=== libpng 1.2.x のビルドエラー ===
 
以下のエラーで inkscape のビルドが失敗する場合:
 
In file included from /usr/include/libpng12/png.h:474,
 
from sp-image.cpp:44:
 
/usr/include/libpng12/pngconf.h:328: error: expected constructor, destructor, or type conversion before '.' token
 
/usr/include/libpng12/pngconf.h:329: error: '__dont__' does not name a type
 
   
{{ic|/usr/include/libpng12/pngconf.h}} にある以下の2行をコメントアウトすで解決できます:
+
既定では、入力中のマウス操作は、 [[libinput]] の設定で無効になっています。{{ic|/etc/X11/xorg.conf.d/30-touchpad.conf}} にある {{ic|InputClass}} の欄に以下の行を加えると、マウスを有効にできます:
   
  +
Section "InputClass"
//__pngconf.h__ already includes setjmp.h;
 
  +
...
//__dont__ include it again.;
 
  +
...
 
  +
Option "DisableWhileTyping" "0"
(I have got no idea what else those changes influence, so you might want to undo them after inkscape is built. This could be related to Debian Bug#522477 and might get fixed in libpng 1.4)
 
  +
EndSection
 
=== qtcurve-gtk2 のセグメンテーション違反 ===
 
qtcurve-gtk2 1.8.18-3 には inkscape の起動後すぐにセグメンテーション違反を発生させる問題が存在します。このバグは上流では修正されていますが ([https://bugs.kde.org/show_bug.cgi?id=343704#c3 Bug 343704])、まだリリースはされておらず AUR のパッケージ qtcurve-git は KDE Frameworks 5 と互換性がありません。今のところ qtcurve と inkscape を使うときは [https://bugs.archlinux.org/task/43631#comment132113 FS#43631] にあるように speps のパッチがあたったパッケージを使うのが一番の選択肢となっています。
 
   
 
== 参照 ==
 
== 参照 ==
* [http://inkscape.org/ Inkscape ホームページ]
+
* [https://inkscape.org/ Inkscape ホームページ]
 
* [[Wikipedia:ja:Inkscape|Inkscape at Wikipedia]]
 
* [[Wikipedia:ja:Inkscape|Inkscape at Wikipedia]]

2021年3月19日 (金) 22:04時点における最新版

Inkscape はベクタ画像エディタアプリケーションです。フリーのソフトウェアライセンス、GNU GPL で配布されています。XML, SVG, CSS などの標準に完全に準拠したグラフィックツールとなることを目標としています [1]

インストール

inkscape公式リポジトリからインストールできます。開発版は AURinkscape-gitAUR から利用可能です。

トラブルシューティング

スペースキーとマウスでのスクロールが動作しない

既定では、入力中のマウス操作は、 libinput の設定で無効になっています。/etc/X11/xorg.conf.d/30-touchpad.conf にある InputClass の欄に以下の行を加えると、マウスを有効にできます:

Section "InputClass"
    ...
    ...
    Option "DisableWhileTyping" "0"
EndSection

参照