Sha256: 9eeaafea465a2ad7bb1e9bb1c830aefb837cf8051088601389b8b0b0e622d083
Contents?: true
Size: 1 KB
Versions: 2
Compression:
Stored size: 1 KB
Contents
//======================================================================== // // BuiltinFont.h // // Copyright 2001-2003 Glyph & Cog, LLC // //======================================================================== #ifndef BUILTINFONT_H #define BUILTINFONT_H #include <aconf.h> #ifdef USE_GCC_PRAGMAS #pragma interface #endif #include "gtypes.h" struct BuiltinFont; class BuiltinFontWidths; //------------------------------------------------------------------------ struct BuiltinFont { char *name; char **defaultBaseEnc; short ascent; short descent; short bbox[4]; BuiltinFontWidths *widths; }; //------------------------------------------------------------------------ struct BuiltinFontWidth { char *name; Gushort width; BuiltinFontWidth *next; }; class BuiltinFontWidths { public: BuiltinFontWidths(BuiltinFontWidth *widths, int sizeA); ~BuiltinFontWidths(); GBool getWidth(char *name, Gushort *width); private: int hash(char *name); BuiltinFontWidth **tab; int size; }; #endif
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
pdf2json-0.2.0 | pdf2json-0.52-source/xpdf/BuiltinFont.h |
pdf2json-0.1.0 | pdf2json-0.52-source/xpdf/BuiltinFont.h |