Skip to content

Instantly share code, notes, and snippets.

@aspose-com-kb
Last active August 7, 2024 15:27

Revisions

  1. aspose-com-kb revised this gist Aug 7, 2024. No changes.
  2. aspose-com-kb created this gist Aug 1, 2024.
    40 changes: 40 additions & 0 deletions Print PDF to PDF with C#.cs
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,40 @@
    using Aspose.Pdf;
    using Aspose.Pdf.Facades;

    class Program
    {
    static void Main(string[] args)
    {
    new License().SetLicense("License.lic");

    // Instantiate the PdfViewer object
    PdfViewer pdfViewer = new PdfViewer();

    // Load the input PDF file
    pdfViewer.BindPdf("sample.pdf");

    // Set printing attributes
    pdfViewer.AutoResize = true;
    pdfViewer.AutoRotate = true;
    pdfViewer.PrintPageDialog = false;
    pdfViewer.PrintAsImage = false;

    // Create objects for PrinterSettings and Page settings
    Aspose.Pdf.Printing.PrinterSettings ps = new Aspose.Pdf.Printing.PrinterSettings();
    Aspose.Pdf.Printing.PageSettings pgs = new Aspose.Pdf.Printing.PageSettings();

    // Set printer name, paper size and margins
    ps.PrinterName = "Adobe PDF";
    pgs.PaperSize = new Aspose.Pdf.Printing.PaperSize("A4", 827, 1169);
    pgs.Margins = new Aspose.Pdf.Devices.Margins(5, 5, 5, 5);

    // Print the document
    pdfViewer.PrintDocumentWithSettings(pgs, ps);

    // Close the PDF file
    pdfViewer.Close();

    // Save the document
    System.Console.WriteLine("PDF printed successfully");
    }
    }