ReflowSetHideImagesUnderInvisibleText Method |
Determines whether to hide images that are covered by invisible text (typically produced by OCR). Default is true.
This options works only if SetHideImagesUnderText() is set to false. If SetHideImagesUnderText() is set to true,
then images that are covered by any text, whether visible or not, will not be included in the output HTML.
If SetHideImagesUnderInvisibleText() is set to true while SetHideImagesUnderText() is set to false, then images
that are covered by invisible text will not be included in the output HTML. This can be useful when processing
scanned documents that are processed by OCR.
Namespace:
pdftron.PDF
Assembly:
pdftron (in pdftron.dll) Version: 255.255.255.255
Syntax public void SetHideImagesUnderInvisibleText(
bool hide_images_under_invisible_text
)
Public Sub SetHideImagesUnderInvisibleText (
hide_images_under_invisible_text As Boolean
)
public:
virtual void SetHideImagesUnderInvisibleText(
[InAttribute] bool hide_images_under_invisible_text
) sealed
function SetHideImagesUnderInvisibleText(hide_images_under_invisible_text);
Parameters
- hide_images_under_invisible_text
- Type: SystemBoolean
if true, images that are covered by invisible text will not be included in the output HTML
See Also