0

我正在创建一个将 HTML 页面转换为ePub格式的应用程序。我尝试将文件转换为 PDF,因为我需要目录作为 ePub 文件的第一页。为此,我使用了 Spire PDF 和 Spire DOC。为了转换为 ePub,我参考了许多网站,发现我们无法将其直接转换为ePub. 所以我尝试转换为doc然后从docto ePub。这是代码。

PDF转Word

public void WordCreation()
{
    PdfDocument pdfdoc = new PdfDocument();
    pdfdoc.LoadFromFile(@"D:\DocFilesConvert\Pdffiles\Merge.pdf");
    pdfdoc.SaveToFile(@"D:\DocFilesConvert\DocFiles\FinalMerge.docx", Spire.Pdf.FileFormat.DOCX);
}

Word 到 ePub

public void GetEpub()
{
    Spire.Doc.Document document = new Spire.Doc.Document();
    document.LoadFromFile(@"D:\DocFilesConvert\DocFiles\FinalMerge.docx");
    document.SaveToFile(@"D:\DocFilesConvert\EPubFiles\Final.epub", Spire.Doc.FileFormat.EPub);
    System.Diagnostics.Process.Start(@"D:\DocFilesConvert\EPubFiles\Final.epub");
}

但我没有得到可点击的目录,也没有得到所需的格式。有没有直接从 PDF 转换为 ePub 的直接方法?

4

1 回答 1

-1

您可以使用 Aspose.PDF 进行 PDF 到 EPUB 的转换,而无需安装任何第三方编辑器。

Aspose.PDF Cloud SDK for .NET - REST API 解决方案:

// Get AppKey and AppSID from https://dashboard.aspose.cloud/
PdfApi pdfApi = new PdfApi("xxxxxxxxxxxxxxxxxxxxxxxx", "xxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxx");
string fileName = "README.pdf";
pdfApi.UploadFile("README.pdf", System.IO.File.OpenRead(@"C:\\Temp\\" + fileName));
string resFileName = "README.epub";
//Save resultant file to storage
//var response = pdfApi.PutPdfInStorageToEpub(fileName, resFileName);
//Get resultant file in response(as stream)
var response = pdfApi.GetPdfInStorageToPptx(fileName);
var fileStream = System.IO.File.Create("C:\\Temp\\"+resFileName);
response.CopyTo(fileStream);
fileStream.Close();

Aspose.PDF for .NET - On Premise API 解决方案:

// Load PDF document
Document pdfDocument = new Document(dataDir + "PDFToEPUB.pdf");
// Instantiate Epub Save options
EpubSaveOptions options = new EpubSaveOptions();          
// Save the ePUB document
pdfDocument.Save(dataDir + "PDFToEPUB_out.epub", options);

我是 Aspose 的开发布道者。

于 2019-09-26T17:49:44.840 回答