Common types.
More...
#include <pdfsdk/math_types.h>
#include <stdbool.h>
#include <stddef.h>
#include <stdint.h>
Go to the source code of this file.
|
|
typedef uint32_t | PDColorValue |
| |
|
typedef struct PDActionRec_ * | PDAction |
| |
|
typedef struct PDAnnotRec_ * | PDAnnot |
| |
|
typedef struct PDDestRec_ * | PDDest |
| |
|
typedef struct PDFileSpecRec_ * | PDFileSpec |
| |
|
typedef struct PDDocRec_ * | PDDoc |
| |
◆ PDF_COLOR_GET_A
| #define PDF_COLOR_GET_A |
( |
| cv | ) |
|
◆ PDF_COLOR_GET_B
| #define PDF_COLOR_GET_B |
( |
| cv | ) |
|
◆ PDF_COLOR_GET_G
| #define PDF_COLOR_GET_G |
( |
| cv | ) |
|
◆ PDF_COLOR_GET_R
| #define PDF_COLOR_GET_R |
( |
| cv | ) |
|
◆ PDF_MAKE_COLOR
| #define PDF_MAKE_COLOR |
( |
| A, |
|
|
| R, |
|
|
| G, |
|
|
| B ) |
Value: (((((uint32_t)(A)) & 0xFF) << 24) | \
((((uint32_t)(R)) & 0xFF) << 16) | \
((((uint32_t)(G)) & 0xFF) << 8) | \
((((uint32_t)(B)) & 0xFF) << 0))
◆ PDRotate
Specifies degrees of rotation.
| Enumerator |
|---|
| kPDRotate_0 | No rotation.
|
| kPDRotate_90 | 90 degree rotation.
|
| kPDRotate_180 | 180 degree rotation.
|
| kPDRotate_270 | 270 degree rotation.
|