#include "PdfCompilerCompat.h"#include <wchar.h>#include <map>#include <string>#include <vector>#include <set>#include "PdfError.h"#include "PdfMemoryManagement.h"#include "podofoapi.h"| #define ePdfBlendMode_Normal "Normal" |
List of defined transparency blending modes
| #define ePdfRenderingIntent_AbsoluteColorimetric "AbsoluteColorimetric" |
List of defined Rendering intents
| #define PODOFO_MAKE_VERSION_REAL | ( | M, | |||
| m, | |||||
| p | ) | ( (M<<16)+(m<<8)+(p) ) |
PoDoFo version - 24-bit integer representation. Version is 0xMMmmpp where M is major, m is minor and p is patch eg 0.7.0 is represented as 0x000700 eg 0.7.99 is represented as 0x000763
Note that the PoDoFo version is available in parts as individual 8-bit integer literals in PODOFO_VERSION_MAJOR, PODOFO_VERSION_MINOR and PODOFO_VERSION_PATCH .
| #define PODOFO_MAKE_VERSION_STR_REAL | ( | M, | |||
| m, | |||||
| p | ) | ("\"" #M "." #m "." #p "\"") |
PoDoFo version represented as a string literal, eg '0.7.99'
1.4.7