• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 #ifndef EMBED_PDF_INT_H
2 #define EMBED_PDF_INT_H
3 
4 EMB_PDF_FONTWIDTHS *emb_pdf_fw_new(int datasize);
5 
6 // if default_width==-1: default_width will be estimated
7 // glyphs==NULL -> output all
8 EMB_PDF_FONTWIDTHS *emb_pdf_fw_cidwidths(const BITSET glyphs,int len,int default_width,int (*getGlyphWidth)(void *context,int gid),void *context);
9 
10 #endif
11