I am able to use your product to convert PDF’s in bulk to HTML files, but the images are being handled as SVG with OBJECT and EMBED tags in the HTML.
Greg
I am able to use your product to convert PDF’s in bulk to HTML files, but the images are being handled as SVG with OBJECT and EMBED tags in the HTML.
Hi Greg,
// Source PDF file<o:p></o:p>
Document doc = new Document("Test.pdf");
// Create HtmlSaveOption with tested feature
HtmlSaveOptions saveOptions = new HtmlSaveOptions();
saveOptions.FixedLayout = true;
saveOptions.SplitIntoPages = false;
saveOptions.RasterImagesSavingMode = HtmlSaveOptions.RasterImagesSavingModes.AsEmbeddedPartsOfPngPageBackground;
string outFile = "Test.html";
// Save the output in HTML format
doc.Save(outFile, saveOptions);
Best Regards,
That option appears to take all of the images on the page and combine them into a single PNG that is included in the HTML via an IMG tag.
Hi Greg,
Hi Greg,