pdf文件转换成html文件方法 其中用到了Aspose.Pdf 这个插件
using System.IO; using System.Text; using Aspose.Pdf; namespace System.Extensions { public static class PdfConverter { public static string Read(Stream stream, string fullPath) { if (Directory.Exists(fullPath)) { Directory.Delete(fullPath, true); } Directory.CreateDirectory(fullPath); try { var doc = new Document(stream); var saveOptions = new HtmlSaveOptions() { FixedLayout = true, SplitIntoPages = false, SplitCssIntoPages = false, RasterImagesSavingMode = HtmlSaveOptions.RasterImagesSavingModes.AsEmbeddedPartsOfPngPageBackground, SpecialFolderForAllImages = fullPath };
pdf文件转换成html文件方法
最新推荐文章于 2024-05-14 10:33:17 发布
本文将介绍如何将PDF文件转换为HTML格式,包括使用在线工具和专业软件的方法,帮助你轻松实现两种格式间的互换。
摘要由CSDN通过智能技术生成