有什么方法可以在 Linux 中查看字体的 PostScript 名称
Is the any way to see PostScript name of font in Linux
我需要知道 .ttf 字体的 PostScript 名称。我知道您可以使用 MacOS 的字体簿看到这一点。但是有没有办法在 Linux 中看到它?也许一些类似的实用程序可以显示字体的 PostScript 名称?
I need to know the PostScript name of the .ttf font.
“Linux gnu”命令是 $ fc-scan [TTF-font]
,最后一行将显示 postscriptname: "name"
示例命令和示例回复
$ fc-scan /usr/share/fonts/TTF/Vera.ttf
$ fc-scan /usr/share/fonts/TTF/Vera.ttf | grep postscriptname
postscriptname: "BitstreamVeraSans-Roman"(s)
我需要知道 .ttf 字体的 PostScript 名称。我知道您可以使用 MacOS 的字体簿看到这一点。但是有没有办法在 Linux 中看到它?也许一些类似的实用程序可以显示字体的 PostScript 名称?
I need to know the PostScript name of the .ttf font.
“Linux gnu”命令是 $ fc-scan [TTF-font]
,最后一行将显示 postscriptname: "name"
示例命令和示例回复
$ fc-scan /usr/share/fonts/TTF/Vera.ttf
$ fc-scan /usr/share/fonts/TTF/Vera.ttf | grep postscriptname
postscriptname: "BitstreamVeraSans-Roman"(s)