diff options
author | Peter Breitenlohner <peb@mppmu.mpg.de> | 2012-07-12 06:22:02 +0000 |
---|---|---|
committer | Peter Breitenlohner <peb@mppmu.mpg.de> | 2012-07-12 06:22:02 +0000 |
commit | b13aba1af09480e6e9b61272ad68ae3c624bebae (patch) | |
tree | 4fc04e5782b3bc9cf1752ac9914023d5492d7dfd /Build/source/libs/poppler/poppler-0.20.2/fofi/FoFiIdentifier.h | |
parent | bf47e17d4653c1a5c3a77bd6bd6e27dd52c05fc3 (diff) |
poppler 0.20.2
git-svn-id: svn://tug.org/texlive/trunk@27008 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/libs/poppler/poppler-0.20.2/fofi/FoFiIdentifier.h')
-rw-r--r-- | Build/source/libs/poppler/poppler-0.20.2/fofi/FoFiIdentifier.h | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/Build/source/libs/poppler/poppler-0.20.2/fofi/FoFiIdentifier.h b/Build/source/libs/poppler/poppler-0.20.2/fofi/FoFiIdentifier.h new file mode 100644 index 00000000000..af1323b76d6 --- /dev/null +++ b/Build/source/libs/poppler/poppler-0.20.2/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 |