Aspose.Pdf
20.9.0
Aspose.PDF for .NET is a PDF document creation and manipulation component that enables your .NET applications to read, write and manipulate existing PDF documents without using Adobe Acrobat. It also allows you to create forms and manage form fields embedded in a PDF document. This component is written in managed C# and it allows developers to add PDF creation and manipulation functionality to their Microsoft .NET applications (WinForms, ASP.NET and .NET Compact Framework).
Aspose.PDF for .NET is affordable and offers an incredible wealth of features including PDF compression options; table creation and manipulation; support for graph objects; extensive hyperlink functionality; extended security controls; custom font handling; integration with data sources; add or remove bookmarks; create table of contents; add, update, delete attachments and annotations; import or export PDF form data; add, replace or remove text and images; split, concatenate, extract or inset pages; transform pages to image; print PDF documents and much more.
See the version list below for details.
Install-Package Aspose.Pdf -Version 20.9.0
dotnet add package Aspose.Pdf --version 20.9.0
<PackageReference Include="Aspose.Pdf" Version="20.9.0" />
paket add Aspose.Pdf --version 20.9.0
#r "nuget: Aspose.Pdf, 20.9.0"
// Install Aspose.Pdf as a Cake Addin
#addin nuget:?package=Aspose.Pdf&version=20.9.0
// Install Aspose.Pdf as a Cake Tool
#tool nuget:?package=Aspose.Pdf&version=20.9.0
.NET API to Process & Manipulate PDF Files
Integrate PDF creation, processing, manipulation & conversion features into your own .NET applications without needing Adobe Acrobat®.
Aspose.PDF for .NET allows to work with PDF documents, pages, text, images, attachments, fonts, bookmarks, annotations, forms, operators, stamps, watermarks, links, security, signatures, and printing.
PDF Processing Features
- Generate PDF documents on the fly through the API or via XML templates.
- Supports 14 core, Type 1, TruType, Type 3, CJK & Unicode fonts.
- Extract text from PDF pages or search for particular text segment using regular expressions.
- Add or extract text & images to & from PDF documents.
- Concatenate or split PDF files.
- Linearization of PDF documents for web optimization.
- Validation support for PDF/A-1a, PDF/A-1b & PDF/A-2a.
- Manage PDF tables & graphs using easy to understand object model.
- Convert PDF documents to Office, web, image & PS formats with highest visual fidelity.
- Manipulate PDF files to manage bookmarks, hyperlinks, watermarks, attachments & annotation.
- Encrypt or decrypt PDF documents as well as set document privileges or modify passwords.
- Manage PDF forms to add, delete, move, flatten or decorate form fields. Developers may also import or export XML, FDF or XFDF data.
- Digitally sign PDF documents or remove signatures. Also, verify if PDF is signed and signature is valid.
- Print PDF documents to physical or virtual printers with or without print dialog.
- Set document viewer preferences as well as manipulate document information & XMP metadata.
New Features & Enhancements in Version 20.9
This release offers addition of numerous methods and properties to the Aspose.PDF for .NET API. For the detailed notes, please visit Aspose.PDF for .NET 20.9 Release Notes.
Read & Write PDF & Other Formats
Fixed Layout: PDF, PDF/A, PDF/UA, XPS
Books: EPUB
Web: HTML, MHTML
Other: TEX, CGM, XSLFO, XML, PCL, SVG
Save PDF Documents As
Microsoft Office: DOC, DOCX, XLS, XLSX, PPTX
Images: JPEG, PNG, BMP, TIFF, EMF
Other: MobiXML, XML
Read Formats
PostScript: PS
Platform Independence
Aspose.PDF for .NET can be used to build applications for Windows, Mac OS X x64 as well as for Linux x64. Developers may also code in PHP, VBScript, Delphi & C++ programming languages while using Aspose.PDF for .NET via COM Interop.
Getting Started with Aspose.PDF for .NET
Are you ready to give Aspose.PDF for .NET a try? Simply execute Install-Package Aspose.PDF
from Package Manager Console in Visual Studio to fetch the NuGet package. If you already have Aspose.PDF for .NET and want to upgrade the version, please execute Update-Package Aspose.PDF
to get the latest version.
Create a PDF file via C# Code
Execute below code snippet to see how Aspose.PDF API performs in your environment or check the GitHub Repository for other common usage scenarios.
// initialize document object
Document document = new Document();
// add a page
Page page = document.Pages.Add();
// add text to the new page
page.Paragraphs.Add(new Aspose.Pdf.Text.TextFragment("Hello World!"));
// save PDF document
document.Save(dir + "output.pdf");
Save PDF as Office & HTML Formats
One of the most popular feature of Aspose.PDF for .NET is to convert PDF documents to other formats without needing to understand the underlying structure of the resultant format.
Give the following snippet a try with your own samples:
// load the file to be converted
var pfile = new Aspose.Pdf.Document(dir + "template.pdf");
// save in different formats
pfile.Save(dir + "output.docx", Aspose.Pdf.SaveFormat.DocX);
pfile.Save(dir + "output.pptx", Aspose.Pdf.SaveFormat.Pptx);
pfile.Save(dir + "output.html", Aspose.Pdf.SaveFormat.Html);
Home | Product Page | Docs | Demos | API Reference | Examples | Blog | Free Support | Temporary License
.NET API to Process & Manipulate PDF Files
Integrate PDF creation, processing, manipulation & conversion features into your own .NET applications without needing Adobe Acrobat®.
Aspose.PDF for .NET allows to work with PDF documents, pages, text, images, attachments, fonts, bookmarks, annotations, forms, operators, stamps, watermarks, links, security, signatures, and printing.
PDF Processing Features
- Generate PDF documents on the fly through the API or via XML templates.
- Supports 14 core, Type 1, TruType, Type 3, CJK & Unicode fonts.
- Extract text from PDF pages or search for particular text segment using regular expressions.
- Add or extract text & images to & from PDF documents.
- Concatenate or split PDF files.
- Linearization of PDF documents for web optimization.
- Validation support for PDF/A-1a, PDF/A-1b & PDF/A-2a.
- Manage PDF tables & graphs using easy to understand object model.
- Convert PDF documents to Office, web, image & PS formats with highest visual fidelity.
- Manipulate PDF files to manage bookmarks, hyperlinks, watermarks, attachments & annotation.
- Encrypt or decrypt PDF documents as well as set document privileges or modify passwords.
- Manage PDF forms to add, delete, move, flatten or decorate form fields. Developers may also import or export XML, FDF or XFDF data.
- Digitally sign PDF documents or remove signatures. Also, verify if PDF is signed and signature is valid.
- Print PDF documents to physical or virtual printers with or without print dialog.
- Set document viewer preferences as well as manipulate document information & XMP metadata.
New Features & Enhancements in Version 20.9
This release offers addition of numerous methods and properties to the Aspose.PDF for .NET API. For the detailed notes, please visit Aspose.PDF for .NET 20.9 Release Notes.
Read & Write PDF & Other Formats
Fixed Layout: PDF, PDF/A, PDF/UA, XPS
Books: EPUB
Web: HTML, MHTML
Other: TEX, CGM, XSLFO, XML, PCL, SVG
Save PDF Documents As
Microsoft Office: DOC, DOCX, XLS, XLSX, PPTX
Images: JPEG, PNG, BMP, TIFF, EMF
Other: MobiXML, XML
Read Formats
PostScript: PS
Platform Independence
Aspose.PDF for .NET can be used to build applications for Windows, Mac OS X x64 as well as for Linux x64. Developers may also code in PHP, VBScript, Delphi & C++ programming languages while using Aspose.PDF for .NET via COM Interop.
Getting Started with Aspose.PDF for .NET
Are you ready to give Aspose.PDF for .NET a try? Simply execute Install-Package Aspose.PDF
from Package Manager Console in Visual Studio to fetch the NuGet package. If you already have Aspose.PDF for .NET and want to upgrade the version, please execute Update-Package Aspose.PDF
to get the latest version.
Create a PDF file via C# Code
Execute below code snippet to see how Aspose.PDF API performs in your environment or check the GitHub Repository for other common usage scenarios.
// initialize document object
Document document = new Document();
// add a page
Page page = document.Pages.Add();
// add text to the new page
page.Paragraphs.Add(new Aspose.Pdf.Text.TextFragment("Hello World!"));
// save PDF document
document.Save(dir + "output.pdf");
Save PDF as Office & HTML Formats
One of the most popular feature of Aspose.PDF for .NET is to convert PDF documents to other formats without needing to understand the underlying structure of the resultant format.
Give the following snippet a try with your own samples:
// load the file to be converted
var pfile = new Aspose.Pdf.Document(dir + "template.pdf");
// save in different formats
pfile.Save(dir + "output.docx", Aspose.Pdf.SaveFormat.DocX);
pfile.Save(dir + "output.pptx", Aspose.Pdf.SaveFormat.Pptx);
pfile.Save(dir + "output.html", Aspose.Pdf.SaveFormat.Html);
Home | Product Page | Docs | Demos | API Reference | Examples | Blog | Free Support | Temporary License
Release Notes
https://docs.aspose.com/pdf/net/aspose-pdf-for-net-20-9-release-notes/
Dependencies
-
.NETFramework 4.0
- No dependencies.
-
.NETStandard 2.0
- Microsoft.Extensions.DependencyModel (>= 2.0.4)
- System.Diagnostics.PerformanceCounter (>= 4.5.0)
- System.Drawing.Common (>= 4.7.0)
- System.Reflection.Emit (>= 4.7.0)
- System.Security.Cryptography.Pkcs (>= 4.7.0)
- System.Security.Permissions (>= 4.5.0)
- System.Text.Encoding.CodePages (>= 4.5.0)
-
.NETStandard 2.1
- Microsoft.Extensions.DependencyModel (>= 2.0.4)
- System.Diagnostics.PerformanceCounter (>= 4.5.0)
- System.Drawing.Common (>= 4.7.0)
- System.Security.Cryptography.Pkcs (>= 4.7.0)
- System.Security.Permissions (>= 4.5.0)
- System.Text.Encoding.CodePages (>= 4.5.0)
Used By
NuGet packages (13)
Showing the top 5 NuGet packages that depend on Aspose.Pdf:
Package | Downloads |
---|---|
Ewl
The Enterprise Web Library (EWL), and its tailored infrastructure platform, are a complete and open solution for developing and operating web-based enterprise software.
|
|
Aspose.Pdf.Builder
Aspose.Pdf.Builder is a toolkit designed to make developing with Aspose.Pdf a breeze. It contains a variety of functions which allows a user to develop complex and flexible page components without having to dig in too deeply into the intricacies of Aspose.Pdf.
|
|
Aspose.Total
Aspose.Total for .NET is the most complete package of all .NET file format APIs offered by Aspose. It empowers developers to create, edit, render, print and convert between a wide range of popular document formats within any .NET, C#, ASP.NET and VB.NET applications.
|
|
Zny.ServiceClient.WorkflowManage
流程管理微服务调用
|
|
Ser.Engine
Package Description
|
GitHub repositories (2)
Showing the top 2 popular GitHub repositories that depend on Aspose.Pdf:
Repository | Stars |
---|---|
aspose-words/Aspose.Words-for-.NET
Aspose.Words for .NET examples, plugins and showcases
|
|
aspose-cells/Aspose.Cells-for-.NET
Aspose.Cells for .NET examples, plugins and showcases
|
Version History
Version | Downloads | Last updated |
---|---|---|
21.4.0 | 2,774 | 4/12/2021 |
21.3.0 | 18,438 | 3/12/2021 |
21.2.0 | 18,412 | 2/13/2021 |
21.1.0 | 38,996 | 1/15/2021 |
20.12.0 | 27,157 | 12/9/2020 |
20.11.0 | 52,315 | 11/10/2020 |
20.10.0 | 41,966 | 10/8/2020 |
20.9.0 | 43,916 | 9/3/2020 |
20.8.0 | 35,033 | 8/12/2020 |
20.7.0 | 54,197 | 7/8/2020 |
20.6.0 | 61,279 | 6/2/2020 |
20.5.0 | 56,575 | 5/5/2020 |
20.4.0 | 58,780 | 4/6/2020 |
20.3.0 | 117,464 | 3/9/2020 |
20.2.0 | 46,550 | 2/14/2020 |
20.1.0 | 161,914 | 1/3/2020 |
19.12.0 | 30,410 | 12/5/2019 |
19.11.0 | 83,337 | 11/9/2019 |
19.10.0 | 57,181 | 10/15/2019 |
19.9.0 | 75,703 | 9/6/2019 |
19.8.0 | 88,604 | 8/5/2019 |
19.7.0 | 109,380 | 7/4/2019 |
19.6.0 | 34,167 | 6/5/2019 |
19.5.0 | 45,992 | 5/4/2019 |
19.4.0 | 71,579 | 4/4/2019 |
19.3.0 | 51,898 | 3/6/2019 |
19.2.0 | 41,886 | 2/15/2019 |
19.1.0 | 105,529 | 1/3/2019 |
18.12.0 | 39,297 | 12/5/2018 |
18.11.0 | 26,243 | 11/8/2018 |
18.10.0 | 59,228 | 10/4/2018 |
18.9.1 | 37,049 | 9/5/2018 |
18.9.0 | 4,426 | 9/4/2018 |
18.8.0 | 29,427 | 8/8/2018 |
18.7.0 | 46,486 | 7/10/2018 |
18.6.1 | 83,317 | 6/22/2018 |
18.6.0 | 27,537 | 6/8/2018 |
18.5.0 | 40,171 | 5/8/2018 |
18.4.1 | 14,090 | 4/13/2018 |
18.4.0 | 4,182 | 4/6/2018 |
18.3.0 | 76,231 | 3/10/2018 |
18.2.0 | 29,207 | 2/14/2018 |
18.1.0 | 36,243 | 1/15/2018 |
17.12.0 | 58,659 | 12/13/2017 |
17.11.0 | 19,634 | 11/4/2017 |
17.10.0 | 28,710 | 10/6/2017 |
17.9.0 | 40,110 | 9/6/2017 |
17.8.0 | 44,394 | 8/3/2017 |
17.7.0 | 27,168 | 7/6/2017 |
17.6.0 | 14,840 | 6/8/2017 |
17.5.0 | 16,776 | 5/18/2017 |
17.4.0 | 72,347 | 4/3/2017 |
17.3.0 | 65,186 | 3/15/2017 |
17.2.0 | 131,401 | 2/1/2017 |
17.1.0 | 11,512 | 1/2/2017 |
16.12.0 | 19,047 | 12/6/2016 |
16.11.0 | 20,035 | 11/7/2016 |
16.10.1 | 7,581 | 10/11/2016 |
16.10.0 | 7,067 | 10/6/2016 |
12.0.0 | 64,258 | 9/9/2016 |
11.9.0 | 25,515 | 8/3/2016 |
11.8.0 | 38,579 | 7/9/2016 |
11.7.0 | 27,000 | 6/6/2016 |
11.6.0 | 77,376 | 5/6/2016 |
11.5.0 | 44,980 | 4/7/2016 |
11.4.0 | 33,907 | 3/7/2016 |
11.3.0 | 81,796 | 2/9/2016 |
11.2.0 | 65,229 | 1/19/2016 |
11.1.1 | 31,820 | 12/30/2015 |
11.1.0 | 6,123 | 12/17/2015 |
11.0.0 | 37,209 | 11/12/2015 |
10.9.0 | 33,781 | 10/2/2015 |
10.8.0 | 22,286 | 9/11/2015 |
10.7.0 | 12,897 | 8/12/2015 |
10.6.0 | 50,628 | 7/13/2015 |
10.5.1 | 6,724 | 6/8/2015 |
10.5.0 | 1,909 | 6/4/2015 |
10.4.0 | 7,679 | 5/14/2015 |
10.3.0 | 10,947 | 4/8/2015 |
10.2.0 | 8,069 | 3/6/2015 |
10.1.0 | 8,533 | 2/5/2015 |
10.0.0 | 6,067 | 1/14/2015 |
9.9.0 | 15,211 | 12/9/2014 |
9.8.0 | 3,863 | 11/17/2014 |
9.7.0 | 10,369 | 10/4/2014 |
9.6.0 | 8,909 | 9/4/2014 |
9.5.0 | 12,172 | 8/6/2014 |
9.4.0 | 8,019 | 7/8/2014 |
9.3.0 | 12,983 | 6/4/2014 |
9.2.1 | 6,752 | 5/7/2014 |
9.2.0 | 1,392 | 5/1/2014 |
9.1.2 | 2,106 | 4/14/2014 |
9.1.0 | 3,419 | 4/4/2014 |
9.0.0 | 8,225 | 3/1/2014 |
8.9.1 | 11,679 | 2/15/2014 |
8.9.0 | 1,724 | 2/12/2014 |
8.8.1 | 5,957 | 1/1/2014 |
8.7.0 | 28,709 | 12/5/2013 |
8.6.0 | 1,747 | 11/28/2013 |
8.5.0 | 6,514 | 10/10/2013 |
8.4.1 | 4,983 | 9/13/2013 |
8.4.0 | 5,689 | 9/12/2013 |
8.3.0 | 9,738 | 8/2/2013 |
8.2.0 | 5,468 | 7/9/2013 |
8.1.0 | 3,680 | 6/7/2013 |
8.0.0 | 10,602 | 5/16/2013 |
7.9.1 | 2,267 | 4/22/2013 |
7.8.0 | 2,922 | 4/3/2013 |
7.7.0 | 7,631 | 2/7/2013 |
7.6.0 | 5,102 | 12/19/2012 |
7.5.0 | 2,620 | 11/22/2012 |
7.4.0 | 3,939 | 10/7/2012 |
7.3.0 | 6,259 | 9/7/2012 |
7.2.0 | 14,190 | 8/3/2012 |
7.1.0 | 1,535 | 7/17/2012 |
7.0.0 | 11,481 | 5/29/2012 |
6.9.0 | 14,329 | 4/13/2012 |
6.8.0 | 1,681 | 3/8/2012 |
6.7.0 | 2,345 | 2/13/2012 |
6.6.0 | 3,939 | 1/20/2012 |