IPA font(CentOS vs Debian)

2018/3/14


開発環境(Debian Jessie)/実行環境(CentOS 7.4 1708)

開発環境(Debian Jessie)と実行環境(CentOS 7.4 1708)が違うといろいろとトラブルが発生する。
わかっていたことだが、使いたいアプリーションとかメンテナンス期間とかの都合があり、開発環境にDebian Linuxを選択している。
今回のドラブルはフォントだった。
開発環境で使用しているフォントを実行環境に用意していなかった。
正しくは

環境確認

インストールしているフォントの一覧を確認する。
fc-list|grep IPA
フォントが足りないだけでなく、ティレクトリの構造が違うぞ・・・
開発環境 Debian Jessie実行環境 CentOS 7.4
/usr/share/fonts/opentype/ipafont-mincho/ipam.ttf: IPA明朝,IPAMincho:style=Regular
/usr/share/fonts/opentype/ipaexfont-gothic/ipaexg.ttf: IPAexゴシック,IPAexGothic:style=Regular
/usr/share/fonts/opentype/ipafont-gothic/ipagp.ttf: IPA Pゴシック,IPAPGothic:style=Regular
/usr/share/fonts/opentype/ipaexfont-mincho/ipaexm.ttf: IPAex明朝,IPAexMincho:style=Regular
/usr/share/fonts/opentype/ipafont-mincho/ipamp.ttf: IPA P明朝,IPAPMincho:style=Regular
/usr/share/fonts/opentype/ipafont-gothic/ipag.ttf: IPAゴシック,IPAGothic:style=Regular
/usr/share/fonts/ipa-pgothic/ipagp.ttf: IPA Pゴシック,IPAPGothic:style=Regular
/usr/share/fonts/ipa-pmincho/ipamp.ttf: IPA P明朝,IPAPMincho:style=Regularr
/usr/share/fonts/ipa-gothic/ipag.ttf: IPAゴシック,IPAGothic:style=Regularr
/usr/share/fonts/ipa-mincho/ipam.ttf: IPA明朝,IPAMincho:style=Regularr
$ tree /usr/share/fonts/opentype/
/usr/share/fonts/opentype/
├── ipaexfont-gothic
│   └── ipaexg.ttf
├── ipaexfont-mincho
│   └── ipaexm.ttf
├── ipafont-gothic
│   ├── ipag.ttf
│   └── ipagp.ttf
└── ipafont-mincho
    ├── ipam.ttf
    └── ipamp.ttf

$ ls -l /usr/share/fonts/truetype/font*  /etc/alternatives/fonts*
lrwxrwxrwx 1 root root 53  5月 15  2015 /etc/alternatives/fonts-japanese-gothic.ttf -> /usr/share/fonts/opentype/ipaexfont-gothic/ipaexg.ttf
lrwxrwxrwx 1 root root 53  5月 15  2015 /etc/alternatives/fonts-japanese-mincho.ttf -> /usr/share/fonts/opentype/ipaexfont-mincho/ipaexm.ttf
lrwxrwxrwx 1 root root 43  5月 15  2015 /usr/share/fonts/truetype/fonts-japanese-gothic.ttf -> /etc/alternatives/fonts-japanese-gothic.ttf
lrwxrwxrwx 1 root root 43  5月 15  2015 /usr/share/fonts/truetype/fonts-japanese-mincho.ttf -> /etc/alternatives/fonts-japanese-mincho.ttf
# tree /usr/share/fonts/
/usr/share/fonts/
├── abattis-cantarell
(途中省略)
├── ipa-gothic
│   └── ipag.ttf
├── ipa-mincho
│   └── ipam.ttf
├── ipa-pgothic
│   └── ipagp.ttf
├── ipa-pmincho
│   └── ipamp.ttf

それで・・・どうする?

どうするといっても選択肢はありそうな、なさそうな。

IPA exgothicフォントをインストールしてみる

昔の記憶をたどりながら、IPAexフォント書体パック(IPAex明朝,IPAexゴシック)を入手する。
よく似たものでIPAフォント4書体パックがある。お得感がある4書体パックだが、こちらはIPAexフォントを含まないので間違えないようにしよう。
CentOSのディレクトリ構造から考えると/usr/share/fonts/ipaexfont-gothic/ipaexg.ttfが正しいように見えるが、 開発環境を意識したうえで/usr/share/fonts/opentype/以下に配置する。
chromium https://ipafont.ipa.go.jp/ &
cd Downloads
wget https://oscdl.ipa.go.jp/IPAexfont/IPAexfont00301.zip 
mkdir -p /usr/share/fonts/opentype/ipaexfont-gothic/
mkdir -p /usr/share/fonts/opentype/ipaexfont-mincho/
#
#CentOSのディレクトリ構造から考えると/usr/share/fonts/ipaexfont-gothic/ipaexg.ttfが正しいように見える
cp ~/Downloads/IPAexfont00301/ipaexg.ttf /usr/share/fonts/opentype/ipaexfont-gothic/
cp ~/Downloads/IPAexfont00301/ipaexm.ttf /usr/share/fonts/opentype/ipaexfont-mincho/
fc-cache -vr
fc-list|grep ipa
これでIPAexゴシックフォントがみえているなら大丈夫だと思う。
/usr/share/fonts/ipa-pgothic/ipagp.ttf: IPA Pゴシック,IPAPGothic:style=Regular
/usr/share/fonts/opentype/ipaexfont-gothic/ipaexg.ttf: IPAexゴシック,IPAexGothic:style=Regular
/usr/share/fonts/ipa-pmincho/ipamp.ttf: IPA P明朝,IPAPMincho:style=Regular
/usr/share/fonts/ipa-gothic/ipag.ttf: IPAゴシック,IPAGothic:style=Regular
/usr/share/fonts/opentype/ipaexfont-mincho/ipaexm.ttf: IPAex明朝,IPAexMincho:style=Regular
/usr/share/fonts/ipa-mincho/ipam.ttf: IPA明朝,IPAMincho:style=Regular

ディレクト構造

ディレクトリ構造の違いは開発環境、実行環境双方に歩み寄りしてもらうことにした。
開発環境 Debian Jessie実行環境 CentOS 7.4
[変更前]
fonts-japanese-mincho.ttfはいろいろリンクされている
/usr/share/fonts/truetype/fonts-japanese-mincho.ttf
→ /etc/alternatives/fonts-japanese-gothic.ttf
→ /usr/share/fonts/opentype/ipaexfont-gothic/ipaexg.ttf
[変更前]
存在しない
[変更後]
ソースコート中の記述を修正
 protected String FontGothic="/usr/share/fonts/truetype/fonts-japanese-gothic.ttf";
→ protected String FontGothic="/usr/share/fonts/opentype/ipaexfont-gothic/ipaexg.ttf";
[変更後]
/usr/share/fonts/opentype/ipaexfont-gothic/ipaexg.ttf