diff options
Diffstat (limited to 'public/fpdf_edit.h')
-rw-r--r-- | public/fpdf_edit.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/public/fpdf_edit.h b/public/fpdf_edit.h index 3bd246b0ad..685fbdd029 100644 --- a/public/fpdf_edit.h +++ b/public/fpdf_edit.h @@ -80,6 +80,9 @@ typedef struct FPDF_IMAGEOBJ_METADATA { unsigned int bits_per_pixel; // The image's colorspace. See above for the list of FPDF_COLORSPACE_*. int colorspace; + // The image's marked content ID. Useful for pairing with associated alt-text. + // A value of -1 indicates no ID. + int marked_content_id; } FPDF_IMAGEOBJ_METADATA; #ifdef __cplusplus |