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 3 years have passed since last update.

cloud function for firebaseのimagemagickで使えるフォント一覧 2020/06/25

Posted at

参考: https://qiita.com/uu4k/items/25666af65d94881a9c5d
昔のより増えているようだ

フォントの一覧のファイルを確認するコード

import * as functions from "firebase-functions";
import { spawnSync } from "child_process";

export const fileList = functions.https.onRequest(async (request, response) => {
  const result = spawnSync("convert", ["-list", "font"]);
  response.send(result.stdout);
}

結果

Path: /etc/ImageMagick-6/type-ghostscript.xml
  Font: AvantGarde-Book
    family: AvantGarde
    style: Normal
    stretch: Normal
    weight: 400
    glyphs: /usr/share/fonts/type1/gsfonts/a010013l.pfb
  Font: AvantGarde-BookOblique
    family: AvantGarde
    style: Oblique
    stretch: Normal
    weight: 400
    glyphs: /usr/share/fonts/type1/gsfonts/a010033l.pfb
  Font: AvantGarde-Demi
    family: AvantGarde
    style: Normal
    stretch: Normal
    weight: 600
    glyphs: /usr/share/fonts/type1/gsfonts/a010015l.pfb
  Font: AvantGarde-DemiOblique
    family: AvantGarde
    style: Oblique
    stretch: Normal
    weight: 600
    glyphs: /usr/share/fonts/type1/gsfonts/a010035l.pfb
  Font: Bookman-Demi
    family: Bookman
    style: Normal
    stretch: Normal
    weight: 600
    glyphs: /usr/share/fonts/type1/gsfonts/b018015l.pfb
  Font: Bookman-DemiItalic
    family: Bookman
    style: Italic
    stretch: Normal
    weight: 600
    glyphs: /usr/share/fonts/type1/gsfonts/b018035l.pfb
  Font: Bookman-Light
    family: Bookman
    style: Normal
    stretch: Normal
    weight: 300
    glyphs: /usr/share/fonts/type1/gsfonts/b018012l.pfb
  Font: Bookman-LightItalic
    family: Bookman
    style: Italic
    stretch: Normal
    weight: 300
    glyphs: /usr/share/fonts/type1/gsfonts/b018032l.pfb
  Font: Courier
    family: Courier
    style: Normal
    stretch: Normal
    weight: 400
    glyphs: /usr/share/fonts/type1/gsfonts/n022003l.pfb
  Font: Courier-Bold
    family: Courier
    style: Normal
    stretch: Normal
    weight: 700
    glyphs: /usr/share/fonts/type1/gsfonts/n022004l.pfb
  Font: Courier-BoldOblique
    family: Courier
    style: Oblique
    stretch: Normal
    weight: 700
    glyphs: /usr/share/fonts/type1/gsfonts/n022024l.pfb
  Font: Courier-Oblique
    family: Courier
    style: Oblique
    stretch: Normal
    weight: 400
    glyphs: /usr/share/fonts/type1/gsfonts/n022023l.pfb
  Font: fixed
    family: Helvetica
    style: Normal
    stretch: Normal
    weight: 400
    glyphs: /usr/share/fonts/type1/gsfonts/n019003l.pfb
  Font: Helvetica
    family: Helvetica
    style: Normal
    stretch: Normal
    weight: 400
    glyphs: /usr/share/fonts/type1/gsfonts/n019003l.pfb
  Font: Helvetica-Bold
    family: Helvetica
    style: Normal
    stretch: Normal
    weight: 700
    glyphs: /usr/share/fonts/type1/gsfonts/n019004l.pfb
  Font: Helvetica-BoldOblique
    family: Helvetica
    style: Italic
    stretch: Normal
    weight: 700
    glyphs: /usr/share/fonts/type1/gsfonts/n019024l.pfb
  Font: Helvetica-Narrow
    family: Helvetica Narrow
    style: Normal
    stretch: Condensed
    weight: 400
    glyphs: /usr/share/fonts/type1/gsfonts/n019043l.pfb
  Font: Helvetica-Narrow-Bold
    family: Helvetica Narrow
    style: Normal
    stretch: Condensed
    weight: 700
    glyphs: /usr/share/fonts/type1/gsfonts/n019044l.pfb
  Font: Helvetica-Narrow-BoldOblique
    family: Helvetica Narrow
    style: Oblique
    stretch: Condensed
    weight: 700
    glyphs: /usr/share/fonts/type1/gsfonts/n019064l.pfb
  Font: Helvetica-Narrow-Oblique
    family: Helvetica Narrow
    style: Oblique
    stretch: Condensed
    weight: 400
    glyphs: /usr/share/fonts/type1/gsfonts/n019063l.pfb
  Font: Helvetica-Oblique
    family: Helvetica
    style: Italic
    stretch: Normal
    weight: 400
    glyphs: /usr/share/fonts/type1/gsfonts/n019023l.pfb
  Font: NewCenturySchlbk-Bold
    family: NewCenturySchlbk
    style: Normal
    stretch: Normal
    weight: 700
    glyphs: /usr/share/fonts/type1/gsfonts/c059016l.pfb
  Font: NewCenturySchlbk-BoldItalic
    family: NewCenturySchlbk
    style: Italic
    stretch: Normal
    weight: 700
    glyphs: /usr/share/fonts/type1/gsfonts/c059036l.pfb
  Font: NewCenturySchlbk-Italic
    family: NewCenturySchlbk
    style: Italic
    stretch: Normal
    weight: 400
    glyphs: /usr/share/fonts/type1/gsfonts/c059033l.pfb
  Font: NewCenturySchlbk-Roman
    family: NewCenturySchlbk
    style: Normal
    stretch: Normal
    weight: 400
    glyphs: /usr/share/fonts/type1/gsfonts/c059013l.pfb
  Font: Palatino-Bold
    family: Palatino
    style: Normal
    stretch: Normal
    weight: 700
    glyphs: /usr/share/fonts/type1/gsfonts/p052004l.pfb
  Font: Palatino-BoldItalic
    family: Palatino
    style: Italic
    stretch: Normal
    weight: 700
    glyphs: /usr/share/fonts/type1/gsfonts/p052024l.pfb
  Font: Palatino-Italic
    family: Palatino
    style: Italic
    stretch: Normal
    weight: 400
    glyphs: /usr/share/fonts/type1/gsfonts/p052023l.pfb
  Font: Palatino-Roman
    family: Palatino
    style: Normal
    stretch: Normal
    weight: 400
    glyphs: /usr/share/fonts/type1/gsfonts/p052003l.pfb
  Font: Symbol
    family: Symbol
    style: Normal
    stretch: Normal
    weight: 400
    glyphs: /usr/share/fonts/type1/gsfonts/s050000l.pfb
  Font: Times-Bold
    family: Times
    style: Normal
    stretch: Normal
    weight: 700
    glyphs: /usr/share/fonts/type1/gsfonts/n021004l.pfb
  Font: Times-BoldItalic
    family: Times
    style: Italic
    stretch: Normal
    weight: 700
    glyphs: /usr/share/fonts/type1/gsfonts/n021024l.pfb
  Font: Times-Italic
    family: Times
    style: Italic
    stretch: Normal
    weight: 400
    glyphs: /usr/share/fonts/type1/gsfonts/n021023l.pfb
  Font: Times-Roman
    family: Times
    style: Normal
    stretch: Normal
    weight: 400
    glyphs: /usr/share/fonts/type1/gsfonts/n021003l.pfb

Path: System Fonts
  Font: Century-Schoolbook-L-Bold
    family: Century Schoolbook L
    style: Normal
    stretch: Normal
    weight: 700
    glyphs: /usr/share/fonts/type1/gsfonts/c059016l.pfb
  Font: Century-Schoolbook-L-Bold-Italic
    family: Century Schoolbook L
    style: Italic
    stretch: Normal
    weight: 700
    glyphs: /usr/share/fonts/type1/gsfonts/c059036l.pfb
  Font: Century-Schoolbook-L-Italic
    family: Century Schoolbook L
    style: Italic
    stretch: Normal
    weight: 400
    glyphs: /usr/share/fonts/type1/gsfonts/c059033l.pfb
  Font: Century-Schoolbook-L-Roman
    family: Century Schoolbook L
    style: Normal
    stretch: Normal
    weight: 500
    glyphs: /usr/share/fonts/type1/gsfonts/c059013l.pfb
  Font: Dingbats
    family: Dingbats
    style: Normal
    stretch: Normal
    weight: 400
    glyphs: /usr/share/fonts/type1/gsfonts/d050000l.pfb
  Font: Droid-Sans-Fallback
    family: Droid Sans Fallback
    style: Normal
    stretch: Normal
    weight: 400
    glyphs: /usr/share/fonts/truetype/droid/DroidSansFallbackFull.ttf
  Font: FreeMono
    family: FreeMono
    style: Normal
    stretch: Normal
    weight: 400
    glyphs: /usr/share/fonts/truetype/freefont/FreeMono.ttf
  Font: FreeMono-Bold
    family: FreeMono
    style: Normal
    stretch: Normal
    weight: 700
    glyphs: /usr/share/fonts/truetype/freefont/FreeMonoBold.ttf
  Font: FreeMono-Bold-Oblique
    family: FreeMono
    style: Italic
    stretch: Normal
    weight: 700
    glyphs: /usr/share/fonts/truetype/freefont/FreeMonoBoldOblique.ttf
  Font: FreeMono-Oblique
    family: FreeMono
    style: Italic
    stretch: Normal
    weight: 400
    glyphs: /usr/share/fonts/truetype/freefont/FreeMonoOblique.ttf
  Font: FreeSans
    family: FreeSans
    style: Normal
    stretch: Normal
    weight: 400
    glyphs: /usr/share/fonts/truetype/freefont/FreeSans.ttf
  Font: FreeSans-Bold
    family: FreeSans
    style: Normal
    stretch: Normal
    weight: 600
    glyphs: /usr/share/fonts/truetype/freefont/FreeSansBold.ttf
  Font: FreeSans-Bold-Oblique
    family: FreeSans
    style: Italic
    stretch: Normal
    weight: 600
    glyphs: /usr/share/fonts/truetype/freefont/FreeSansBoldOblique.ttf
  Font: FreeSans-Oblique
    family: FreeSans
    style: Italic
    stretch: Normal
    weight: 400
    glyphs: /usr/share/fonts/truetype/freefont/FreeSansOblique.ttf
  Font: FreeSerif
    family: FreeSerif
    style: Normal
    stretch: Normal
    weight: 400
    glyphs: /usr/share/fonts/truetype/freefont/FreeSerif.ttf
  Font: FreeSerif-Bold
    family: FreeSerif
    style: Normal
    stretch: Normal
    weight: 700
    glyphs: /usr/share/fonts/truetype/freefont/FreeSerifBold.ttf
  Font: FreeSerif-Bold-Italic
    family: FreeSerif
    style: Italic
    stretch: Normal
    weight: 700
    glyphs: /usr/share/fonts/truetype/freefont/FreeSerifBoldItalic.ttf
  Font: FreeSerif-Italic
    family: FreeSerif
    style: Italic
    stretch: Normal
    weight: 400
    glyphs: /usr/share/fonts/truetype/freefont/FreeSerifItalic.ttf
  Font: Garuda
    family: Garuda
    style: Normal
    stretch: Normal
    weight: 400
    glyphs: /usr/share/fonts/truetype/tlwg/Garuda.ttf
  Font: Garuda-Bold
    family: Garuda
    style: Normal
    stretch: Normal
    weight: 700
    glyphs: /usr/share/fonts/truetype/tlwg/Garuda-Bold.ttf
  Font: Garuda-Bold-Oblique
    family: Garuda
    style: Oblique
    stretch: Normal
    weight: 700
    glyphs: /usr/share/fonts/truetype/tlwg/Garuda-BoldOblique.ttf
  Font: Garuda-Oblique
    family: Garuda
    style: Oblique
    stretch: Normal
    weight: 400
    glyphs: /usr/share/fonts/truetype/tlwg/Garuda-Oblique.ttf
  Font: IPAGothic
    family: IPAGothic
    style: Normal
    stretch: Normal
    weight: 400
    glyphs: /usr/share/fonts/truetype/fonts-japanese-gothic.ttf
  Font: IPAMincho
    family: IPAMincho
    style: Normal
    stretch: Normal
    weight: 400
    glyphs: /usr/share/fonts/truetype/fonts-japanese-mincho.ttf
  Font: IPAPGothic
    family: IPAPGothic
    style: Normal
    stretch: Normal
    weight: 400
    glyphs: /usr/share/fonts/opentype/ipafont-gothic/ipagp.ttf
  Font: IPAPMincho
    family: IPAPMincho
    style: Normal
    stretch: Normal
    weight: 400
    glyphs: /usr/share/fonts/opentype/ipafont-mincho/ipamp.ttf
  Font: KacstArt
    family: KacstArt
    style: Normal
    stretch: Normal
    weight: 500
    glyphs: /usr/share/fonts/truetype/kacst/KacstArt.ttf
  Font: KacstBook
    family: KacstBook
    style: Normal
    stretch: Normal
    weight: 500
    glyphs: /usr/share/fonts/truetype/kacst/KacstBook.ttf
  Font: KacstDecorative
    family: KacstDecorative
    style: Normal
    stretch: Normal
    weight: 500
    glyphs: /usr/share/fonts/truetype/kacst/KacstDecorative.ttf
  Font: KacstDigital
    family: KacstDigital
    style: Normal
    stretch: Normal
    weight: 500
    glyphs: /usr/share/fonts/truetype/kacst/KacstDigital.ttf
  Font: KacstFarsi
    family: KacstFarsi
    style: Normal
    stretch: Normal
    weight: 500
    glyphs: /usr/share/fonts/truetype/kacst/KacstFarsi.ttf
  Font: KacstLetter
    family: KacstLetter
    style: Normal
    stretch: Normal
    weight: 500
    glyphs: /usr/share/fonts/truetype/kacst/KacstLetter.ttf
  Font: KacstNaskh
    family: KacstNaskh
    style: Normal
    stretch: Normal
    weight: 500
    glyphs: /usr/share/fonts/truetype/kacst/KacstNaskh.ttf
  Font: KacstOffice
    family: KacstOffice
    style: Normal
    stretch: Normal
    weight: 500
    glyphs: /usr/share/fonts/truetype/kacst/KacstOffice.ttf
  Font: KacstOne
    family: KacstOne
    style: Normal
    stretch: Normal
    weight: 400
    glyphs: /usr/share/fonts/truetype/kacst-one/KacstOne.ttf
  Font: KacstOne-Bold
    family: KacstOne
    style: Normal
    stretch: Normal
    weight: 700
    glyphs: /usr/share/fonts/truetype/kacst-one/KacstOne-Bold.ttf
  Font: KacstPen
    family: KacstPen
    style: Normal
    stretch: Normal
    weight: 500
    glyphs: /usr/share/fonts/truetype/kacst/KacstPen.ttf
  Font: KacstPoster
    family: KacstPoster
    style: Normal
    stretch: Normal
    weight: 500
    glyphs: /usr/share/fonts/truetype/kacst/KacstPoster.ttf
  Font: KacstQurn
    family: KacstQurn
    style: Normal
    stretch: Normal
    weight: 400
    glyphs: /usr/share/fonts/truetype/kacst/KacstQurn.ttf
  Font: KacstScreen
    family: KacstScreen
    style: Normal
    stretch: Normal
    weight: 500
    glyphs: /usr/share/fonts/truetype/kacst/KacstScreen.ttf
  Font: KacstTitle
    family: KacstTitle
    style: Normal
    stretch: Normal
    weight: 500
    glyphs: /usr/share/fonts/truetype/kacst/KacstTitle.ttf
  Font: KacstTitleL
    family: KacstTitleL
    style: Normal
    stretch: Normal
    weight: 400
    glyphs: /usr/share/fonts/truetype/kacst/KacstTitleL.ttf
  Font: Kinnari
    family: Kinnari
    style: Normal
    stretch: Normal
    weight: 500
    glyphs: /usr/share/fonts/truetype/tlwg/Kinnari.ttf
  Font: Kinnari-Bold
    family: Kinnari
    style: Normal
    stretch: Normal
    weight: 700
    glyphs: /usr/share/fonts/truetype/tlwg/Kinnari-Bold.ttf
  Font: Kinnari-Bold-Italic
    family: Kinnari
    style: Italic
    stretch: Normal
    weight: 700
    glyphs: /usr/share/fonts/truetype/tlwg/Kinnari-BoldItalic.ttf
  Font: Kinnari-Bold-Oblique
    family: Kinnari
    style: Oblique
    stretch: Normal
    weight: 700
    glyphs: /usr/share/fonts/truetype/tlwg/Kinnari-BoldOblique.ttf
  Font: Kinnari-Italic
    family: Kinnari
    style: Italic
    stretch: Normal
    weight: 500
    glyphs: /usr/share/fonts/truetype/tlwg/Kinnari-Italic.ttf
  Font: Kinnari-Oblique
    family: Kinnari
    style: Oblique
    stretch: Normal
    weight: 500
    glyphs: /usr/share/fonts/truetype/tlwg/Kinnari-Oblique.ttf
  Font: Laksaman
    family: Laksaman
    style: Normal
    stretch: Normal
    weight: 400
    glyphs: /usr/share/fonts/truetype/tlwg/Laksaman.ttf
  Font: Laksaman-Bold
    family: Laksaman
    style: Normal
    stretch: Normal
    weight: 700
    glyphs: /usr/share/fonts/truetype/tlwg/Laksaman-Bold.ttf
  Font: Laksaman-Bold-Italic
    family: Laksaman
    style: Italic
    stretch: Normal
    weight: 700
    glyphs: /usr/share/fonts/truetype/tlwg/Laksaman-BoldItalic.ttf
  Font: Laksaman-Italic
    family: Laksaman
    style: Italic
    stretch: Normal
    weight: 400
    glyphs: /usr/share/fonts/truetype/tlwg/Laksaman-Italic.ttf
  Font: Liberation-Mono
    family: Liberation Mono
    style: Normal
    stretch: Normal
    weight: 400
    glyphs: /usr/share/fonts/truetype/liberation/LiberationMono-Regular.ttf
  Font: Liberation-Mono-Bold
    family: Liberation Mono
    style: Normal
    stretch: Normal
    weight: 700
    glyphs: /usr/share/fonts/truetype/liberation/LiberationMono-Bold.ttf
  Font: Liberation-Mono-Bold-Italic
    family: Liberation Mono
    style: Italic
    stretch: Normal
    weight: 700
    glyphs: /usr/share/fonts/truetype/liberation/LiberationMono-BoldItalic.ttf
  Font: Liberation-Mono-Italic
    family: Liberation Mono
    style: Italic
    stretch: Normal
    weight: 400
    glyphs: /usr/share/fonts/truetype/liberation/LiberationMono-Italic.ttf
  Font: Liberation-Sans
    family: Liberation Sans
    style: Normal
    stretch: Normal
    weight: 400
    glyphs: /usr/share/fonts/truetype/liberation/LiberationSans-Regular.ttf
  Font: Liberation-Sans-Bold
    family: Liberation Sans
    style: Normal
    stretch: Normal
    weight: 700
    glyphs: /usr/share/fonts/truetype/liberation/LiberationSans-Bold.ttf
  Font: Liberation-Sans-Bold-Italic
    family: Liberation Sans
    style: Italic
    stretch: Normal
    weight: 700
    glyphs: /usr/share/fonts/truetype/liberation/LiberationSans-BoldItalic.ttf
  Font: Liberation-Sans-Italic
    family: Liberation Sans
    style: Italic
    stretch: Normal
    weight: 400
    glyphs: /usr/share/fonts/truetype/liberation/LiberationSans-Italic.ttf
  Font: Liberation-Sans-Narrow
    family: Liberation Sans Narrow
    style: Normal
    stretch: Condensed
    weight: 400
    glyphs: /usr/share/fonts/truetype/liberation/LiberationSansNarrow-Regular.ttf
  Font: Liberation-Sans-Narrow-Bold
    family: Liberation Sans Narrow
    style: Normal
    stretch: Condensed
    weight: 700
    glyphs: /usr/share/fonts/truetype/liberation/LiberationSansNarrow-Bold.ttf
  Font: Liberation-Sans-Narrow-Bold-Italic
    family: Liberation Sans Narrow
    style: Italic
    stretch: Condensed
    weight: 700
    glyphs: /usr/share/fonts/truetype/liberation/LiberationSansNarrow-BoldItalic.ttf
  Font: Liberation-Sans-Narrow-Italic
    family: Liberation Sans Narrow
    style: Italic
    stretch: Condensed
    weight: 400
    glyphs: /usr/share/fonts/truetype/liberation/LiberationSansNarrow-Italic.ttf
  Font: Liberation-Serif
    family: Liberation Serif
    style: Normal
    stretch: Normal
    weight: 400
    glyphs: /usr/share/fonts/truetype/liberation/LiberationSerif-Regular.ttf
  Font: Liberation-Serif-Bold
    family: Liberation Serif
    style: Normal
    stretch: Normal
    weight: 700
    glyphs: /usr/share/fonts/truetype/liberation/LiberationSerif-Bold.ttf
  Font: Liberation-Serif-Bold-Italic
    family: Liberation Serif
    style: Italic
    stretch: Normal
    weight: 700
    glyphs: /usr/share/fonts/truetype/liberation/LiberationSerif-BoldItalic.ttf
  Font: Liberation-Serif-Italic
    family: Liberation Serif
    style: Italic
    stretch: Normal
    weight: 400
    glyphs: /usr/share/fonts/truetype/liberation/LiberationSerif-Italic.ttf
  Font: Loma
    family: Loma
    style: Normal
    stretch: Normal
    weight: 400
    glyphs: /usr/share/fonts/truetype/tlwg/Loma.ttf
  Font: Loma-Bold
    family: Loma
    style: Normal
    stretch: Normal
    weight: 700
    glyphs: /usr/share/fonts/truetype/tlwg/Loma-Bold.ttf
  Font: Loma-Bold-Oblique
    family: Loma
    style: Oblique
    stretch: Normal
    weight: 700
    glyphs: /usr/share/fonts/truetype/tlwg/Loma-BoldOblique.ttf
  Font: Loma-Oblique
    family: Loma
    style: Oblique
    stretch: Normal
    weight: 400
    glyphs: /usr/share/fonts/truetype/tlwg/Loma-Oblique.ttf
  Font: mry_KacstQurn
    family: mry_KacstQurn
    style: Normal
    stretch: Normal
    weight: 400
    glyphs: /usr/share/fonts/truetype/kacst/mry_KacstQurn.ttf
  Font: Nimbus-Mono-L
    family: Nimbus Mono L
    style: Normal
    stretch: Normal
    weight: 400
    glyphs: /usr/share/fonts/type1/gsfonts/n022003l.pfb
  Font: Nimbus-Mono-L-Bold
    family: Nimbus Mono L
    style: Normal
    stretch: Normal
    weight: 700
    glyphs: /usr/share/fonts/type1/gsfonts/n022004l.pfb
  Font: Nimbus-Mono-L-Bold-Oblique
    family: Nimbus Mono L
    style: Oblique
    stretch: Normal
    weight: 700
    glyphs: /usr/share/fonts/type1/gsfonts/n022024l.pfb
  Font: Nimbus-Mono-L-Regular-Oblique
    family: Nimbus Mono L
    style: Oblique
    stretch: Normal
    weight: 400
    glyphs: /usr/share/fonts/type1/gsfonts/n022023l.pfb
  Font: Nimbus-Roman-No9-L
    family: Nimbus Roman No9 L
    style: Normal
    stretch: Normal
    weight: 400
    glyphs: /usr/share/fonts/type1/gsfonts/n021003l.pfb
  Font: Nimbus-Roman-No9-L-Medium
    family: Nimbus Roman No9 L
    style: Normal
    stretch: Normal
    weight: 700
    glyphs: /usr/share/fonts/type1/gsfonts/n021004l.pfb
  Font: Nimbus-Roman-No9-L-Medium-Italic
    family: Nimbus Roman No9 L
    style: Italic
    stretch: Normal
    weight: 700
    glyphs: /usr/share/fonts/type1/gsfonts/n021024l.pfb
  Font: Nimbus-Roman-No9-L-Regular-Italic
    family: Nimbus Roman No9 L
    style: Italic
    stretch: Normal
    weight: 400
    glyphs: /usr/share/fonts/type1/gsfonts/n021023l.pfb
  Font: Nimbus-Sans-L
    family: Nimbus Sans L
    style: Normal
    stretch: Normal
    weight: 400
    glyphs: /usr/share/fonts/type1/gsfonts/n019003l.pfb
  Font: Nimbus-Sans-L-Bold
    family: Nimbus Sans L
    style: Normal
    stretch: Normal
    weight: 700
    glyphs: /usr/share/fonts/type1/gsfonts/n019004l.pfb
  Font: Nimbus-Sans-L-Bold-Condensed
    family: Nimbus Sans L
    style: Normal
    stretch: Condensed
    weight: 700
    glyphs: /usr/share/fonts/type1/gsfonts/n019044l.pfb
  Font: Nimbus-Sans-L-Bold-Condensed-Italic
    family: Nimbus Sans L
    style: Italic
    stretch: Condensed
    weight: 700
    glyphs: /usr/share/fonts/type1/gsfonts/n019064l.pfb
  Font: Nimbus-Sans-L-Bold-Italic
    family: Nimbus Sans L
    style: Italic
    stretch: Normal
    weight: 700
    glyphs: /usr/share/fonts/type1/gsfonts/n019024l.pfb
  Font: Nimbus-Sans-L-Regular-Condensed
    family: Nimbus Sans L
    style: Normal
    stretch: Condensed
    weight: 400
    glyphs: /usr/share/fonts/type1/gsfonts/n019043l.pfb
  Font: Nimbus-Sans-L-Regular-Condensed-Italic
    family: Nimbus Sans L
    style: Italic
    stretch: Condensed
    weight: 400
    glyphs: /usr/share/fonts/type1/gsfonts/n019063l.pfb
  Font: Nimbus-Sans-L-Regular-Italic
    family: Nimbus Sans L
    style: Italic
    stretch: Normal
    weight: 400
    glyphs: /usr/share/fonts/type1/gsfonts/n019023l.pfb
  Font: Norasi
    family: Norasi
    style: Normal
    stretch: Normal
    weight: 400
    glyphs: /usr/share/fonts/truetype/tlwg/Norasi.ttf
  Font: Norasi-Bold
    family: Norasi
    style: Normal
    stretch: Normal
    weight: 700
    glyphs: /usr/share/fonts/truetype/tlwg/Norasi-Bold.ttf
  Font: Norasi-Bold-Italic
    family: Norasi
    style: Italic
    stretch: Normal
    weight: 700
    glyphs: /usr/share/fonts/truetype/tlwg/Norasi-BoldItalic.ttf
  Font: Norasi-Bold-Oblique
    family: Norasi
    style: Oblique
    stretch: Normal
    weight: 700
    glyphs: /usr/share/fonts/truetype/tlwg/Norasi-BoldOblique.ttf
  Font: Norasi-Italic
    family: Norasi
    style: Italic
    stretch: Normal
    weight: 400
    glyphs: /usr/share/fonts/truetype/tlwg/Norasi-Italic.ttf
  Font: Norasi-Oblique
    family: Norasi
    style: Oblique
    stretch: Normal
    weight: 400
    glyphs: /usr/share/fonts/truetype/tlwg/Norasi-Oblique.ttf
  Font: Noto-Mono
    family: Noto Mono
    style: Normal
    stretch: Normal
    weight: 400
    glyphs: /usr/share/fonts/truetype/noto/NotoMono-Regular.ttf
  Font: Purisa
    family: Purisa
    style: Normal
    stretch: Normal
    weight: 400
    glyphs: /usr/share/fonts/truetype/tlwg/Purisa.ttf
  Font: Purisa-Bold
    family: Purisa
    style: Normal
    stretch: Normal
    weight: 700
    glyphs: /usr/share/fonts/truetype/tlwg/Purisa-Bold.ttf
  Font: Purisa-Bold-Oblique
    family: Purisa
    style: Oblique
    stretch: Normal
    weight: 700
    glyphs: /usr/share/fonts/truetype/tlwg/Purisa-BoldOblique.ttf
  Font: Purisa-Oblique
    family: Purisa
    style: Oblique
    stretch: Normal
    weight: 400
    glyphs: /usr/share/fonts/truetype/tlwg/Purisa-Oblique.ttf
  Font: Sawasdee
    family: Sawasdee
    style: Normal
    stretch: Normal
    weight: 400
    glyphs: /usr/share/fonts/truetype/tlwg/Sawasdee.ttf
  Font: Sawasdee-Bold
    family: Sawasdee
    style: Normal
    stretch: Normal
    weight: 700
    glyphs: /usr/share/fonts/truetype/tlwg/Sawasdee-Bold.ttf
  Font: Sawasdee-Bold-Oblique
    family: Sawasdee
    style: Oblique
    stretch: Normal
    weight: 700
    glyphs: /usr/share/fonts/truetype/tlwg/Sawasdee-BoldOblique.ttf
  Font: Sawasdee-Oblique
    family: Sawasdee
    style: Oblique
    stretch: Normal
    weight: 400
    glyphs: /usr/share/fonts/truetype/tlwg/Sawasdee-Oblique.ttf
  Font: Standard-Symbols-L
    family: Standard Symbols L
    style: Normal
    stretch: Normal
    weight: 400
    glyphs: /usr/share/fonts/type1/gsfonts/s050000l.pfb
  Font: Tlwg-Mono
    family: Tlwg Mono
    style: Normal
    stretch: Normal
    weight: 500
    glyphs: /usr/share/fonts/truetype/tlwg/TlwgMono.ttf
  Font: Tlwg-Mono-Bold
    family: Tlwg Mono
    style: Normal
    stretch: Normal
    weight: 700
    glyphs: /usr/share/fonts/truetype/tlwg/TlwgMono-Bold.ttf
  Font: Tlwg-Mono-Bold-Oblique
    family: Tlwg Mono
    style: Oblique
    stretch: Normal
    weight: 700
    glyphs: /usr/share/fonts/truetype/tlwg/TlwgMono-BoldOblique.ttf
  Font: Tlwg-Mono-Oblique
    family: Tlwg Mono
    style: Oblique
    stretch: Normal
    weight: 400
    glyphs: /usr/share/fonts/truetype/tlwg/TlwgMono-Oblique.ttf
  Font: Tlwg-Typewriter
    family: Tlwg Typewriter
    style: Normal
    stretch: Normal
    weight: 500
    glyphs: /usr/share/fonts/truetype/tlwg/TlwgTypewriter.ttf
  Font: Tlwg-Typewriter-Bold
    family: Tlwg Typewriter
    style: Normal
    stretch: Normal
    weight: 700
    glyphs: /usr/share/fonts/truetype/tlwg/TlwgTypewriter-Bold.ttf
  Font: Tlwg-Typewriter-Bold-Oblique
    family: Tlwg Typewriter
    style: Oblique
    stretch: Normal
    weight: 700
    glyphs: /usr/share/fonts/truetype/tlwg/TlwgTypewriter-BoldOblique.ttf
  Font: Tlwg-Typewriter-Oblique
    family: Tlwg Typewriter
    style: Oblique
    stretch: Normal
    weight: 400
    glyphs: /usr/share/fonts/truetype/tlwg/TlwgTypewriter-Oblique.ttf
  Font: Tlwg-Typist
    family: Tlwg Typist
    style: Normal
    stretch: Normal
    weight: 500
    glyphs: /usr/share/fonts/truetype/tlwg/TlwgTypist.ttf
  Font: Tlwg-Typist-Bold
    family: Tlwg Typist
    style: Normal
    stretch: Normal
    weight: 700
    glyphs: /usr/share/fonts/truetype/tlwg/TlwgTypist-Bold.ttf
  Font: Tlwg-Typist-Bold-Oblique
    family: Tlwg Typist
    style: Oblique
    stretch: Normal
    weight: 700
    glyphs: /usr/share/fonts/truetype/tlwg/TlwgTypist-BoldOblique.ttf
  Font: Tlwg-Typist-Oblique
    family: Tlwg Typist
    style: Oblique
    stretch: Normal
    weight: 500
    glyphs: /usr/share/fonts/truetype/tlwg/TlwgTypist-Oblique.ttf
  Font: Tlwg-Typo
    family: Tlwg Typo
    style: Normal
    stretch: Normal
    weight: 500
    glyphs: /usr/share/fonts/truetype/tlwg/TlwgTypo.ttf
  Font: Tlwg-Typo-Bold
    family: Tlwg Typo
    style: Normal
    stretch: Normal
    weight: 700
    glyphs: /usr/share/fonts/truetype/tlwg/TlwgTypo-Bold.ttf
  Font: Tlwg-Typo-Bold-Oblique
    family: Tlwg Typo
    style: Oblique
    stretch: Normal
    weight: 700
    glyphs: /usr/share/fonts/truetype/tlwg/TlwgTypo-BoldOblique.ttf
  Font: Tlwg-Typo-Oblique
    family: Tlwg Typo
    style: Oblique
    stretch: Normal
    weight: 500
    glyphs: /usr/share/fonts/truetype/tlwg/TlwgTypo-Oblique.ttf
  Font: Umpush
    family: Umpush
    style: Normal
    stretch: Normal
    weight: 400
    glyphs: /usr/share/fonts/truetype/tlwg/Umpush.ttf
  Font: Umpush-Bold
    family: Umpush
    style: Normal
    stretch: Normal
    weight: 700
    glyphs: /usr/share/fonts/truetype/tlwg/Umpush-Bold.ttf
  Font: Umpush-Bold-Oblique
    family: Umpush
    style: Oblique
    stretch: Normal
    weight: 700
    glyphs: /usr/share/fonts/truetype/tlwg/Umpush-BoldOblique.ttf
  Font: Umpush-Light
    family: Umpush
    style: Normal
    stretch: Normal
    weight: 300
    glyphs: /usr/share/fonts/truetype/tlwg/Umpush-Light.ttf
  Font: Umpush-Light-Oblique
    family: Umpush
    style: Oblique
    stretch: Normal
    weight: 300
    glyphs: /usr/share/fonts/truetype/tlwg/Umpush-LightOblique.ttf
  Font: Umpush-Oblique
    family: Umpush
    style: Oblique
    stretch: Normal
    weight: 400
    glyphs: /usr/share/fonts/truetype/tlwg/Umpush-Oblique.ttf
  Font: URW-Bookman-L-Demi-Bold
    family: URW Bookman L
    style: Normal
    stretch: Normal
    weight: 700
    glyphs: /usr/share/fonts/type1/gsfonts/b018015l.pfb
  Font: URW-Bookman-L-Demi-Bold-Italic
    family: URW Bookman L
    style: Italic
    stretch: Normal
    weight: 700
    glyphs: /usr/share/fonts/type1/gsfonts/b018035l.pfb
  Font: URW-Bookman-L-Light
    family: URW Bookman L
    style: Normal
    stretch: Normal
    weight: 400
    glyphs: /usr/share/fonts/type1/gsfonts/b018012l.pfb
  Font: URW-Bookman-L-Light-Italic
    family: URW Bookman L
    style: Italic
    stretch: Normal
    weight: 400
    glyphs: /usr/share/fonts/type1/gsfonts/b018032l.pfb
  Font: URW-Chancery-L-Medium-Italic
    family: URW Chancery L
    style: Italic
    stretch: Normal
    weight: 500
    glyphs: /usr/share/fonts/type1/gsfonts/z003034l.pfb
  Font: URW-Gothic-L-Book
    family: URW Gothic L
    style: Normal
    stretch: Normal
    weight: 300
    glyphs: /usr/share/fonts/type1/gsfonts/a010013l.pfb
  Font: URW-Gothic-L-Book-Oblique
    family: URW Gothic L
    style: Oblique
    stretch: Normal
    weight: 300
    glyphs: /usr/share/fonts/type1/gsfonts/a010033l.pfb
  Font: URW-Gothic-L-Demi
    family: URW Gothic L
    style: Normal
    stretch: Normal
    weight: 600
    glyphs: /usr/share/fonts/type1/gsfonts/a010015l.pfb
  Font: URW-Gothic-L-Demi-Oblique
    family: URW Gothic L
    style: Oblique
    stretch: Normal
    weight: 600
    glyphs: /usr/share/fonts/type1/gsfonts/a010035l.pfb
  Font: URW-Palladio-L-Bold
    family: URW Palladio L
    style: Normal
    stretch: Normal
    weight: 700
    glyphs: /usr/share/fonts/type1/gsfonts/p052004l.pfb
  Font: URW-Palladio-L-Bold-Italic
    family: URW Palladio L
    style: Italic
    stretch: Normal
    weight: 700
    glyphs: /usr/share/fonts/type1/gsfonts/p052024l.pfb
  Font: URW-Palladio-L-Italic
    family: URW Palladio L
    style: Italic
    stretch: Normal
    weight: 400
    glyphs: /usr/share/fonts/type1/gsfonts/p052023l.pfb
  Font: URW-Palladio-L-Roman
    family: URW Palladio L
    style: Normal
    stretch: Normal
    weight: 500
    glyphs: /usr/share/fonts/type1/gsfonts/p052003l.pfb
  Font: Waree
    family: Waree
    style: Normal
    stretch: Normal
    weight: 400
    glyphs: /usr/share/fonts/truetype/tlwg/Waree.ttf
  Font: Waree-Bold
    family: Waree
    style: Normal
    stretch: Normal
    weight: 700
    glyphs: /usr/share/fonts/truetype/tlwg/Waree-Bold.ttf
  Font: Waree-Bold-Oblique
    family: Waree
    style: Oblique
    stretch: Normal
    weight: 700
    glyphs: /usr/share/fonts/truetype/tlwg/Waree-BoldOblique.ttf
  Font: Waree-Oblique
    family: Waree
    style: Oblique
    stretch: Normal
    weight: 400
    glyphs: /usr/share/fonts/truetype/tlwg/Waree-Oblique.ttf
  Font: WenQuanYi-Zen-Hei
    family: WenQuanYi Zen Hei
    style: Normal
    stretch: Normal
    weight: 500
    glyphs: /usr/share/fonts/truetype/wqy/wqy-zenhei.ttc
  Font: WenQuanYi-Zen-Hei-Mono
    family: WenQuanYi Zen Hei Mono
    style: Normal
    stretch: Normal
    weight: 500
    glyphs: /usr/share/fonts/truetype/wqy/wqy-zenhei.ttc
  Font: WenQuanYi-Zen-Hei-Sharp
    family: WenQuanYi Zen Hei Sharp
    style: Normal
    stretch: Normal
    weight: 500
    glyphs: /usr/share/fonts/truetype/wqy/wqy-zenhei.ttc
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?