Indicate whether images are to be embedded in the document.
public bool EmbedImages { get; set; }
Public Property EmbedImages() As Boolean
Get
Set
public:
property bool EmbedImages
{
bool get()
void set(bool value)
}
true to embed images in the final HTML document. Otherwise, false. Default value is false.
The document writer will create an HTML img
element for each image encountered while saving an HTML file. When the value of EmbedImages is false, the document writer will save the image data to disk and sets the img.src
value to the relative path of the file.
When the value of EmbedImages is true, the document writer will convert the image data to a data URI for example data:image/png;base64,iVBOR...
and set the value directly into img.src
.
In both cases, the image format can be set using ImageType.
Raster .NET | C API | C++ Class Library | JavaScript HTML5
Document .NET | C API | C++ Class Library | JavaScript HTML5
Medical .NET | C API | C++ Class Library | JavaScript HTML5
Medical Web Viewer .NET