我在使用apose-pdf-java 将pdf转换为html 其中样式、图片都存储在一个文件内,目前转出来的html文件 样式在< head >标签内,我希望转换行内样式 ,请问应该如何设置
HtmlSaveOptions saveOptions = new HtmlSaveOptions();
saveOptions.setRasterImagesSavingMode(HtmlSaveOptions.RasterImagesSavingModes.AsEmbeddedPartsOfPngPageBackground);
saveOptions.setPartsEmbeddingMode(HtmlSaveOptions.PartsEmbeddingModes.EmbedAllIntoHtml);
Document doc = new Document(pdfPath);
doc.save(htmlPath, saveOptions);