summaryrefslogtreecommitdiff
path: root/Build/source/libs/poppler/poppler-0.26.2/fofi/FoFiIdentifier.h
diff options
context:
space:
mode:
authorPeter Breitenlohner <peb@mppmu.mpg.de>2014-06-20 06:50:58 +0000
committerPeter Breitenlohner <peb@mppmu.mpg.de>2014-06-20 06:50:58 +0000
commit0d7d4c6df0be0f9b130fbddd045b5493032d291b (patch)
treef1617e33c97bcf4615fb30760c4928feec71e819 /Build/source/libs/poppler/poppler-0.26.2/fofi/FoFiIdentifier.h
parent1582a7c12c48f8f039e42e3659c23ff55a903446 (diff)
poppler 0.26.2
git-svn-id: svn://tug.org/texlive/trunk@34330 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/libs/poppler/poppler-0.26.2/fofi/FoFiIdentifier.h')
-rw-r--r--Build/source/libs/poppler/poppler-0.26.2/fofi/FoFiIdentifier.h42
1 files changed, 42 insertions, 0 deletions
diff --git a/Build/source/libs/poppler/poppler-0.26.2/fofi/FoFiIdentifier.h b/Build/source/libs/poppler/poppler-0.26.2/fofi/FoFiIdentifier.h
new file mode 100644
index 00000000000..af1323b76d6
--- /dev/null
+++ b/Build/source/libs/poppler/poppler-0.26.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