nodejs gm ImageMagick Error unable to read font

龐順龍發表於2019-05-11

錯誤資訊:

gm convert: Unable to read font (/usr/local/share/ghostscript/fonts/n019003l.pfb) [No such file or directory].

多半是因為本機的Ghostscript問題,我們可以使用brew命令來安裝下:

Linux

預設是安裝好的,基本不會有這個錯誤

Mac OS

brew install ghostscript

Windows ,此方法是網路找到的,未經測試

1、網上下一個n019003l.pfp檔案,放在你自己的字型資料夾裡,我直接放在C:\font資料夾下了
2、找到GraphicsMagick安裝目錄,我的是C:\Program Files\GraphicsMagick-1.3.21-Q16
3、找到type-ghostscript.mgk檔案,開啟
4、搜尋n019003l

<type
  name="Helvetica"
  fullname="Helvetica Regular"
  family="Helvetica"
  foundry="URW"
  weight="400"
  style="normal"
  stretch="normal"
  format="type1"
  metrics="@ghostscript_font_dir@n019003l.afm"
  glyphs="@ghostscript_font_dir@n019003l.pfb"
/>

5、最後兩行
@ghostscript_font_dir@
改成你現在的n019003l.pfp檔案路徑:
metrics=”C:\font\n019003l.afm”
glyphs=”C:\font\n019003l.pfb”
然後就解決了。。

同理,要是列印中文亂碼也可以這樣新增中文字型。

龐順龍最後編輯於:2年前

內容均為作者獨立觀點,不代表八零IT人立場,如涉及侵權,請及時告知。

相關文章