diff options
author | Peter Breitenlohner <peb@mppmu.mpg.de> | 2014-08-22 07:04:01 +0000 |
---|---|---|
committer | Peter Breitenlohner <peb@mppmu.mpg.de> | 2014-08-22 07:04:01 +0000 |
commit | 1612bfd9e3f1db86e943626640b71cdf3df5b9a0 (patch) | |
tree | 55b061c358a44ccfce7f8c584a8a876edf864870 /Build/source/libs/poppler/poppler-0.26.4/fofi/FoFiIdentifier.h | |
parent | 8ed265a1a7e2e74041cd214aa3acc933484adb01 (diff) |
poppler 0.26.4
git-svn-id: svn://tug.org/texlive/trunk@35006 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/libs/poppler/poppler-0.26.4/fofi/FoFiIdentifier.h')
-rw-r--r-- | Build/source/libs/poppler/poppler-0.26.4/fofi/FoFiIdentifier.h | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/Build/source/libs/poppler/poppler-0.26.4/fofi/FoFiIdentifier.h b/Build/source/libs/poppler/poppler-0.26.4/fofi/FoFiIdentifier.h new file mode 100644 index 00000000000..af1323b76d6 --- /dev/null +++ b/Build/source/libs/poppler/poppler-0.26.4/fofi/FoFiIdentifier.h @@ -0,0 +1,42 @@ +//======================================================================== +// +// FoFiIdentifier.h +// +// Copyright 2009 Glyph & Cog, LLC +// +//======================================================================== + +#ifndef FOFIIDENTIFIER_H +#define FOFIIDENTIFIER_H + +#ifdef USE_GCC_PRAGMAS +#pragma interface +#endif + +//------------------------------------------------------------------------ +// FoFiIdentifier +//------------------------------------------------------------------------ + +enum FoFiIdentifierType { + fofiIdType1PFA, // Type 1 font in PFA format + fofiIdType1PFB, // Type 1 font in PFB format + fofiIdCFF8Bit, // 8-bit CFF font + fofiIdCFFCID, // CID CFF font + fofiIdTrueType, // TrueType font + fofiIdTrueTypeCollection, // TrueType collection + fofiIdOpenTypeCFF8Bit, // OpenType wrapper with 8-bit CFF font + fofiIdOpenTypeCFFCID, // OpenType wrapper with CID CFF font + fofiIdUnknown, // unknown type + fofiIdError // error in reading the file +}; + +class FoFiIdentifier { +public: + + static FoFiIdentifierType identifyMem(char *file, int len); + static FoFiIdentifierType identifyFile(char *fileName); + static FoFiIdentifierType identifyStream(int (*getChar)(void *data), + void *data); +}; + +#endif |