HTML Penampil Berkas melalui Python

Lihat dokumen HTML. Gunakan Aspose.PDF untuk Python for .NET untuk memodifikasi file HTML secara terprogram

Cara melihat HTML file Menggunakan Python for .NET Perpustakaan

Untuk melihat file HTML, kita akan menggunakan Aspose.PDF for .NET API yang merupakan API manipulasi dokumen yang kaya fitur, kuat dan mudah digunakan untuk platform python-net. Buka manajer paket nuget, cari Aspose.pdf dan instal. Anda juga dapat menggunakan perintah berikut dari Konsol Manajer Paket.

Python Package Manager Console

pip install aspose-pdf

Lihat file HTML melalui Python


Anda perlu Aspose.PDF untuk .NET untuk mencoba kode di lingkungan Anda.

  1. Muat HTML dengan instance Document.
  2. Lihat File yang dihasilkan.

Python - contoh kode untuk melihat file HTML

Kode sampel ini menunjukkan cara melihat file HTML

    options= new HtmlLoadOptions()
    resolution = new Resolution(300)
    imageDevice = new BmpDevice(resolution)
    document= new Document(_dataDir + "test.html", 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();
        }
    }