Aspose.PDF for .Net is Chromium based or webkit based?

Hi There,

May i know Aspose.PDF for .Net is Chromium based or webkit based ?. Also does api supports all the below features:

  1. Create new PDF from an MVC view
  2. Create new PDF from a C# class
  3. Merge existing PDFs into a new PDF
  4. Compress PDFs for web
  5. Chromium based (not webkit based)
  6. Print PDFs to network printers

@deepakgauda

Thanks for contacting support.

Aspose.PDF for .NET is a .NET component built to allow developers to create PDF documents, whether simple or complex, on the fly programmatically.

It seems like you want to convert MVC View into a PDF. In that case, you can use HTML of rendered View and use HTML to PDF Conversion feature of the API to generate PDF.

You can create a PDF document from scratch in C# using following code snippet that would create a PDF with one page:

Document doc = new Document();
doc.Pages.Add();
doc.Save("output.pdf");

API does offer a feature which will allow you to merge multiple PDF documents into one new PDF file.

You can optimize PDF documents using Aspose.PDF for .NET in order to compress/reduce its size and also enable web view.

Aspose.PDF for .NET allows you to print PDF documents using default printer as well as configured over network. You can use complete physical name of shared printer in order to achieve the requirement.

Could you please explain a bit more about your this requirement. We will further check respective information at our side and share with you.