typedef struct _tagPdfImageOnTextSettings{L_UINT32 uStructSize;L_BOOL bBullets;L_BOOL bCrossrefs;DOC2_HEADERFOOTERSETTING HFSetng;L_BOOL bNeedTaggedInfo;L_BOOL bPDFThumbnail;DOC2_DPISETTING DpiSetng;L_BOOL bPDFForms;L_BOOL bShowBackgroundImage;L_BOOL bShowText;L_BOOL bRuleLines;L_BOOL bURLBackgroundDef;L_BOOL bURLHighlight;L_BOOL bLinearized;} PDFIMAGEONTEXTSETTINGS, *pPDFIMAGEONTEXTSETTINGS;
The PDFIMAGEONTEXTSETTINGS structure provides information about settings for the DOC2_PDF_IMAGE_ON_TEXT output format.
Structure size. Set it to sizeof(PDFIMAGEONTEXTSETTINGS).
Specifies whether bullets are in the document. Possible values are:
| Value | Meaning |
|---|---|
| TRUE | Bullets are in the document. |
| FALSE | Bullets are not in the document. |
Specifies whether to retain cross-references. Possible values are:
| Value | Meaning |
|---|---|
| TRUE | Retain cross-references. |
| FALSE | Do not retain cross-references. |
Specifies the header and footer settings for the document. For a list of possible values, refer to DOC2_HEADERFOOTERSETTING.
Specifies whether to create a tagged PDF file. Possible values are:
| Value | Meaning |
|---|---|
| TRUE | Create a tagged PDF file. |
| FALSE | Do not create a tagged PDF file. |
Specifies whether to create thumbnails. Possible values are:
| Value | Meaning |
|---|---|
| TRUE | Create thumbnails. |
| FALSE | Do not create thumbnails. |
Specifies the DPI setting. For a list of possible values, refer to DOC2_DPISETTING.
Specifies whether to display the form layer. Possible values are:
| Value | Meaning |
|---|---|
| TRUE | Display the form layer. |
| FALSE | Do not display the form layer. |
Specifies whether to display the background image layer. Possible values are:
| Value | Meaning |
|---|---|
| TRUE | Display the background image layer. |
| FALSE | Do not display the background image layer. |
Specifies whether to display the text. Possible values are:
| Value | Meaning |
|---|---|
| TRUE | Display the text. |
| FALSE | Do not display the text. |
Specifies whether to insert line breaks. Possible values are:
| Value | Meaning |
|---|---|
| TRUE | Insert line breaks. |
| FALSE | Do not insert line breaks. |
Specifies whether to display the default background color for any URLs. Possible values are:
| Value | Meaning |
|---|---|
| TRUE | Display the default background color for any URLs. |
| FALSE | Do not display the default background color for any URLs. |
Specifies whether to highlight URLs. Possible values are:
| Value | Meaning |
|---|---|
| TRUE | Highlight URLs. |
| FALSE | Do not highlight URLs. |
Specifies whether to generate linearized PDF files. A linearized PDF file is a file that has been organized in a special way to enable efficient, incremental access in a network environment. Using a linerarized PDF file allows the first page of the PDF file to be displayed in a user's Web browser before the entire file is downloaded from the Web server. Possible values are:
| Value | Meaning |
|---|---|
| TRUE | Generate a linearized PDF document optimized for fast web viewing. |
| FALSE | Do not generate a linearized PDF File. |
pPDFIMAGEONTEXTSETTINGS is a pointer to a PDFIMAGEONTEXTSETTINGS structure. If the function parameter type is pPDFIMAGEONTEXTSETTINGS, declare a PDFIMAGEONTEXTSETTINGS variable, update the structure's fields, and pass the variable's address in the parameter. Declaring a pPDFIMAGEONTEXTSETTINGS variable is necessary only if the program requires a pointer.
The structure is used by: