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