「Inkscape」の版間の差分
ナビゲーションに移動
検索に移動
Kusanaginoturugi (トーク | 投稿記録) (→トラブルシューティング: 英語版にあわせて節を削除) |
|||
(3人の利用者による、間の3版が非表示) | |||
2行目: | 2行目: | ||
[[de:Inkscape]] |
[[de:Inkscape]] |
||
[[en:Inkscape]] |
[[en:Inkscape]] |
||
− | [ |
+ | [https://inkscape.org/ Inkscape] はベクタ画像エディタアプリケーションです。フリーのソフトウェアライセンス、GNU GPL で配布されています。XML, SVG, CSS などの標準に完全に準拠したグラフィックツールとなることを目標としています [https://ja.wikipedia.org/wiki/Inkscape]。 |
== インストール == |
== インストール == |
||
− | {{pkg|inkscape}} は[[公式リポジトリ]]からインストールできます。開発版は [[AUR]] の {{AUR|inkscape- |
+ | {{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|/ |
+ | 既定では、入力中のマウス操作は、 [[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 のパッチがあたったパッケージを使うのが一番の選択肢となっています。 |
||
== 参照 == |
== 参照 == |
||
− | * [ |
+ | * [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 は公式リポジトリからインストールできます。開発版は AUR の inkscape-gitAUR から利用可能です。
トラブルシューティング
スペースキーとマウスでのスクロールが動作しない
既定では、入力中のマウス操作は、 libinput の設定で無効になっています。/etc/X11/xorg.conf.d/30-touchpad.conf
にある InputClass
の欄に以下の行を加えると、マウスを有効にできます:
Section "InputClass" ... ... Option "DisableWhileTyping" "0" EndSection