2013年12月26日

Can't find the font file /usr/share/fonts/truetype/ipaex/

$ gv hogehoge.ps

でエラー

====
Can't find the font file /usr/share/fonts/truetype/ipaex/
ipaexm.ttf
Error: /undefinedfilename in /findfontGPL Ghostscript 9.05: Unrecoverable error, exit code 1

Operand stack:
Fb 256 --nostringval-- --nostringval-- 0 76.7694 ipaexm-H
Execution stack:
%interp_exit .runexec2 --nostringval-- --nostringval-- --nostringval-- 2 %stopped_push --nostringval-- --nostringval-- --nostringval-- false 1 %stopped_push 1910 1 3 %oparray_pop 1909 1 3 %oparray_pop 1893 1 3 %oparray_pop 1787 1 3 %oparray_pop --nostringval-- %errorexec_pop .runexec2 --nostringval-- --nostringval-- --nostringval-- 2 %stopped_push --nostringval-- --nostringval-- 1868 7 4 %oparray_pop
Dictionary stack:
--dict:1164/1684(ro)(G)-- --dict:0/20(G)-- --dict:78/200(L)-- --dict:86/300(L)--
Current allocation mode is local
Last OS error: No such file or directory
===

これは cidfmap のパスの途中に改行が入る出るエラー。

===
$ cat /usr/share/ghostscript/9.05/Resource/Init/cidfmap
/ipaexm << /FileType /TrueType /Path (/usr/share/fonts/truetype/ipaex/
ipaexm.ttf) /SubfontID 0 /CSI [(Japan1) 6] >> ;
/ipaexg << /FileType /TrueType /Path (/usr/share/fonts/truetype/ipaex/
ipaexg.ttf) /SubfontID 0 /CSI [(Japan1) 6] >> ;
/Ryumin-Light /ipaexm ;
/GothicBBB-Medium /ipaexg ;
===

フォント毎に一行とし。その途中で改行はしない。

===
$ cat /usr/share/ghostscript/9.05/Resource/Init/cidfmap
/ipaexm << /FileType /TrueType /Path (/usr/share/fonts/truetype/ipaex/ipaexm.ttf) /SubfontID 0 /CSI [(Japan1) 6] >> ;
/ipaexg << /FileType /TrueType /Path (/usr/share/fonts/truetype/ipaex/ipaexg.ttf) /SubfontID 0 /CSI [(Japan1) 6] >> ;
/Ryumin-Light /ipaexm ;
/GothicBBB-Medium /ipaexg ;
===

0 件のコメント:

コメントを投稿