MHT 通过 C# 查看文件

查看 MHT 文档。使用 Aspose.PDF for .NET 以编程方式修改 MHT 文件

如何使用 .NET 库查看 MHT 个文件

为了查看 MHT 文件,我们将使用 Aspose.PDF for .NET API,这是一款适用于 net 平台的功能丰富、功能强大且易于使用的文档操作 API。打开 NuGet 软件包管理器,搜索 aspose.pdf 然后安装。您也可以在软件包管理器控制台中使用以下命令。

Package Manager Console

PM > Install-Package Aspose.PDF

通过 C# 查看 MHT 个文件


你需要 Aspose.PDF for .NET 才能在你的环境中试用这些代码。

1.在 MHT 中加载一个文档实例。 1.查看生成的文件。

C#-查看 MHT 文件的示例代码

此示例代码显示如何查看 MHT 文件

    MhtLoadOptions options= new MhtLoadOptions();
    Resolution resolution = new Resolution(300);
    BmpDevice imageDevice = new BmpDevice(resolution);
    Document pdfDocument= new Document(_dataDir + "test.mhtm", options);
    for (int pageCount = 1; pageCount <= pdfDocument.Pages.Count; pageCount++)
    {
        using (FileStream imageStream =
        new FileStream($"{_dataDir}image{pageCount}_out.{ext}", FileMode.Create))
        {
            // Convert a particular page and save the image to stream
            imageDevice.Process(pdfDocument.Pages[pageCount], imageStream);

            // Close stream
            imageStream.Close();
        }
    }