0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Ubuntu Linux で Illustrator AI 形式ファイルを読む

Posted at

環境

Ubuntu 22.04 LTS

方法

以下の2つの方法で読めました。

  • GIMP
  • XnViewMP

しかしながらAIファイルの保存方法によってはうまくいきませんでした。

GIMP で読んでみる

とあるファイルを読もうとしたら、ダメでした。
image.png

保存方法に依存するのかな?
消防庁にあったAIファイルを使って試してみました。

image.png

解像度など指定して、ビットマップ化するようです。
image.png

読めました。
image.png

XnView Mp で読んでみる

マルチプラットフォームの画像ビューワです。500種類のフォーマットに対応しているらしいです。
https://www.xnview.com/

image.png

個人、教育用途には無償で利用できるらしいです。

XnViewMP-linux-x64.deb をダウンロードします。

インストールしようとすると・・・

$ sudo dpkg -i XnViewMP-linux-x64.deb 
.
.
.
dpkg: 依存関係の問題により xnview の設定ができません:
 xnview は以下に依存 (depends) します: libgdk-pixbuf2.0-0 (>= 2.22.0) ...しかし:
  パッケージ libgdk-pixbuf2.0-0 はまだインストールされていません。
.
.
.

libgdk-pixbuf2.0-0 をインストールしようとすると依存を解消する必要があります。

$ sudo apt install libgdk-pixbuf2.0-0
.
.
.
以下のパッケージには満たせない依存関係があります:
 libgdk-pixbuf2.0-0 : 依存: libgdk-pixbuf-xlib-2.0-0 (>= 2.40.2-2build4) しかし、インストールされようとしていません
E: 未解決の依存関係です。'apt --fix-broken install' を実行してみてください (または解法を明示してください)。

fix-broken install を行ってみました。

$ sudo apt --fix-broken install

これで libgdk-pixbuf はインストールされたみたいです。

$ sudo apt install libgdk-pixbuf2.0-0
.
.
.
libgdk-pixbuf2.0-0 はすでに最新バージョン (2.40.2-2build4) です。
.
.
.

改めて deb ファイルをインストールします。

$ sudo dpkg -i XnViewMP-linux-x64.deb 

実行します。

$ xnview 

初期設定画面をOKします。
image.png
GIMPでダメだったファイルはこちらも同様にダメでした。

image.png

消防庁のAIファイルはこちらでも無事読めました。
image.png

こちらは残念ながら解像度指定などはできないようです。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?