public static class HtmlSaveOptions.HtmlImageSavingInfo extends SaveOptions.ResourceSavingInfo
This class represents set of data that related to external resource image file's saving during PDF to HTML conversion.
Constructor and Description |
---|
HtmlImageSavingInfo()
creates new instance of HtmlImageSavingInfo
|
Modifier and Type | Method and Description |
---|---|
int |
getHtmlHostPageNumber()
Tells to custom code to what page of generated set of HTML page-files pertains saved
image.
|
int |
getImageType()
Represents type of saved image referenced in HTML.
|
int |
getParentType()
Saved image can pertain to HTML itself or can be extracted. from SVG embedded to HTML.
|
int |
getPdfHostPageNumber()
Tells to custom code to what page of original PDF document pertains saved image Since
it's possible that will be saved not all pages of original document, this value tells us
about host page number in original PDF.
|
void |
setHtmlHostPageNumber(int htmlHostPageNumber)
Tells to custom code to what page of generated set of HTML page-files pertains saved
image.
|
void |
setImageType(int imageType)
Represents type of saved image referenced in HTML.
|
void |
setParentType(int parentType)
Saved image can pertain to HTML itself or can be extracted. from SVG embedded to HTML.
|
void |
setPdfHostPageNumber(int pdfHostPageNumber)
Tells to custom code to what page of original PDF document pertains saved image Since
it's possible that will be saved not all pages of original document, this value tells us
about host page number in original PDF.
|
getContentStream, getResourceType, getSupposedFileName, isCustomProcessingCancelled, setCustomProcessingCancelled
public HtmlImageSavingInfo()
creates new instance of HtmlImageSavingInfo
public int getImageType()
Represents type of saved image referenced in HTML. Set by converter and can be used in custom code to decide what should be done
HtmlSaveOptions.HtmlImageType
public void setImageType(int imageType)
Represents type of saved image referenced in HTML. Set by converter and can be used in custom code to decide what should be done
imageType
- HtmlImageType elementHtmlSaveOptions.HtmlImageType
public int getParentType()
Saved image can pertain to HTML itself or can be extracted. from SVG embedded to HTML. This property can tell to custom code what's that type of parent of processed image. It set by converter and can be used in custom code to decide what should be done with that image (f.e. custom code can decide where to save image or how it must be referenced in parent's content).
HtmlSaveOptions.ImageParentTypes
public void setParentType(int parentType)
Saved image can pertain to HTML itself or can be extracted. from SVG embedded to HTML. This property can tell to custom code what's that type of parent of processed image. It set by converter and can be used in custom code to decide what should be done with that image (f.e. custom code can decide where to save image or how it must be referenced in parent's content).
parentType
- ImageParentTypes elementHtmlSaveOptions.ImageParentTypes
public int getPdfHostPageNumber()
Tells to custom code to what page of original PDF document pertains saved image Since it's possible that will be saved not all pages of original document, this value tells us about host page number in original PDF. If original page number for some reason is unknown, it always return '1'
public void setPdfHostPageNumber(int pdfHostPageNumber)
Tells to custom code to what page of original PDF document pertains saved image Since it's possible that will be saved not all pages of original document, this value tells us about host page number in original PDF. If original page number for some reason is unknown, it always return '1'
pdfHostPageNumber
- int valuepublic int getHtmlHostPageNumber()
Tells to custom code to what page of generated set of HTML page-files pertains saved image. If splitting on pages turned off this value always contains '1' since in such case Only one HTML page is generated.
public void setHtmlHostPageNumber(int htmlHostPageNumber)
Tells to custom code to what page of generated set of HTML page-files pertains saved image. If splitting on pages turned off this value always contains '1' since in such case Only one HTML page is generated.
htmlHostPageNumber
- int value