Tabelle über Python zum PDF hinzufügen

Fügen Sie mithilfe von Aspose.PDF für die Python for .NET Bibliothek programmgesteuert eine Tabelle in ein PDF-Dokument ein

So fügen Sie mithilfe der Python for .NET Bibliothek Tabellen zu einem PDF-Dokument hinzu

Um eine Tabelle hinzuzufügen, verwenden wir die API Aspose.PDF for .NET, eine funktionsreiche, leistungsstarke und einfach zu verwendende API zur Dokumentenbearbeitung für die python-net Plattform. Öffnen Sie den NuGet -Paketmanager, suchen Sie nach Aspose.pdf und installieren Sie es. Sie können auch den folgenden Befehl von der Package Manager Console aus verwenden.

Python Package Manager Console

pip install aspose-pdf

Tabelle zu PDF hinzufügen über Python


Sie benötigen Aspose.PDF for .NET, um den Code in Ihrer Umgebung auszuprobieren.

  1. Laden Sie das PDF mit einer Instanz von Document.
  2. Greifen Sie über ihren Index auf die Seite zu.
  3. Erstellen Sie Table-Objekt.
  4. Gedeckter Tisch (z. B. Grenzen setzen)
  5. Füllen Sie die Tabelle aus.
  6. Fügen Sie die Tabelle einer Seite hinzu.
  7. Speichern Sie die Datei.

Tabelle als PDF hinzufügen - Python

import aspose.pdf as ap

input_file = DIR_INPUT_TABLE + "AddTable.pdf"
output_file = DIR_OUTPUT + "document_with_table_out.pdf"
# Load source PDF document
doc = ap.Document(input_file)
# Initializes a new instance of the Table
table = ap.Table()
# Set the table border color as LightGray
table.border = ap.BorderInfo(ap.BorderSide.ALL, 5, ap.Color.light_gray)
# Set the border for table cells
table.default_cell_border = ap.BorderInfo(ap.BorderSide.ALL, 5, ap.Color.light_gray)
# Create a loop to add 10 rows
for row_count in range(0, 10):
    # Add row to table
    row = table.rows.add()  
    # Add table cells
    row.cells.add("Column (" + str(row_count) + ", 1)")
    row.cells.add("Column (" + str(row_count) + ", 2)")
    row.cells.add("Column (" + str(row_count) + ", 3)")
# Add table object to first page of input document
doc.pages[1].paragraphs.add(table)
# Save updated document containing table object
doc.save(output_file)