Spire.PDF
9.6.0
See the version list below for details.
dotnet add package Spire.PDF --version 9.6.0
NuGet\Install-Package Spire.PDF -Version 9.6.0
<PackageReference Include="Spire.PDF" Version="9.6.0" />
paket add Spire.PDF --version 9.6.0
#r "nuget: Spire.PDF, 9.6.0"
// Install Spire.PDF as a Cake Addin #addin nuget:?package=Spire.PDF&version=9.6.0 // Install Spire.PDF as a Cake Tool #tool nuget:?package=Spire.PDF&version=9.6.0
.NET Library for Processing & Manipulating PDF Files
Product Page 丨 Documentation 丨 Examples 丨 Forum 丨 Temporary License 丨 Customized Demo
Spire.PDF for .NET is a professional PDF API applied to creating, writing, editing, handling and reading PDF files without any external dependencies within .NET ( C#, VB.NET, ASP.NET, .NET Core, .NET 5.0, MonoAndroid and Xamarin.iOS ) application.
Using this .NET PDF library, you can implement rich capabilities to create PDF files from scratch or process existing PDF documents entirely through C#/VB.NET without installing Adobe Acrobat.
PDF Processing Features
- Generate/write/read/edit PDF documents.
- Supports 14 core, Type 1, True Type, Type 3, CJK & Unicode fonts.
- Extract images, text, pages and attachments from a PDF document with great speed and accuracy.
- Merge/split PDF documents and overlay documents.
- Convert HTML to PDF, XPS to PDF, Text to PDF and images to PDF to PDF and convert PDF to Excel, convert PDF to Word, convert PDF to images with efficient performance.
- Encrypt/Decrypt PDF, modify PDF passwords and create PDF digital signatures.
- Add and modify text/image bookmarks.
- Add text in Footer/Header.
- Export database table and pictures to PDF.
- Add Hyperlinks, work with actions/Javascript Action/Action Chain/Action Annotation.
- Add/remove/edit/fill fields.
Conversions
- Convert Webpage HTML to PDF, HTML ASPX to PDF
- Convert Image to PDF
- Convert Text to PDF
- Convert PDF to HTML
- Convert XPS to PDF
- Convert PDF to SVG
- Convert PDF to XPS
- Convert PDF to Image
- Convert PDF to Word
- Convert PDF to Excel
Support Environment
- Fully written in C# and also support VB.NET.
- Applied on .NET Framework 2.0, 3.5, 3.5 Client Profile, 4.0, 4.0 Client Profile,4.5 and .NET Standard 2.0, .NET Core, .NET 5.0, MonoAndroid and Xamarin.Ios.
- Support Windows Forms and ASP.NET Applications.
- Support 32-bit OS
- Support 64-bit OS
- Support PDF Version 1.2, 1.3, 1.4, 1.5, 1.6 and 1.7.
- PDF API reference in HTML.
- Be Independent and do not need Adobe Acrobat or other third party PDF libraries.
Convert PDF to DOC in C#
//Create a PDF document and load sample PDF.
PdfDocument doc = new PdfDocument();
doc.LoadFromFile("test.pdf");
//Use SaveToFile method and set conversion target parameter as FileFormat.DOC.
doc.SaveToFile("PDFtoDoc.doc", FileFormat.DOC);
Convert PDF to images in C#
//Create a PDF document and load sample PDF.
PdfDocument doc = new PdfDocument();
doc.LoadFromFile("sample.pdf");
Image bmp = doc.SaveAsImage(0);
Image emf = doc.SaveAsImage(0, Spire.Pdf.Graphics.PdfImageType.Metafile);
Image zoomImg = new Bitmap((int)(emf.Size.Width * 2), (int)(emf.Size.Height * 2));
using (Graphics g = Graphics.FromImage(zoomImg))
{
g.ScaleTransform(2.0f, 2.0f);
g.DrawImage(emf, new Rectangle(new Point(0, 0), emf.Size), new Rectangle(new Point(0, 0), emf.Size), GraphicsUnit.Pixel);
}
//Save as BMP
bmp.Save("convertToBmp.bmp", ImageFormat.Bmp);
System.Diagnostics.Process.Start("convertToBmp.bmp");
//Save as EMF
emf.Save("convertToEmf.png", ImageFormat.Png);
System.Diagnostics.Process.Start("convertToEmf.png");
//SAVE as ZoomImg
zoomImg.Save("convertToZoom.png", ImageFormat.Png);
System.Diagnostics.Process.Start("convertToZoom.png");
Convert HTML to PDF in C#
//Create a pdf document.
PdfDocument doc = new PdfDocument();
PdfPageSettings setting = new PdfPageSettings();
setting.Size = new SizeF(1000,1000);
setting.Margins = new Spire.Pdf.Graphics.PdfMargins(20);
PdfHtmlLayoutFormat htmlLayoutFormat = new PdfHtmlLayoutFormat();
htmlLayoutFormat.IsWaiting = true;
String url = "https://www.wikipedia.org/";
Thread thread = new Thread(() =>
{ doc.LoadFromHTML(url, false, false, false, setting,htmlLayoutFormat); });
thread.SetApartmentState(ApartmentState.STA);
thread.Start();
thread.Join();
//Save pdf file.
doc.SaveToFile("output-wiki.pdf");
Product Page 丨 Documentation 丨 Examples 丨 Forum 丨 Temporary License 丨 Customized Demo
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 is compatible. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net40 is compatible. net403 was computed. net45 was computed. net451 was computed. net452 was computed. net46 was computed. net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid is compatible. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios is compatible. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETCoreApp 2.0
- System.Drawing.Common (>= 4.5.0)
- System.Text.Encoding.CodePages (>= 4.5.0)
-
.NETFramework 2.0
- No dependencies.
-
.NETFramework 4.0
- No dependencies.
-
MonoAndroid 0.0
- SkiaSharp (>= 1.68.0)
- System.Buffers (>= 4.5.0)
- System.Memory (>= 4.5.3)
- System.Runtime.CompilerServices.Unsafe (>= 4.6.0)
- System.Text.Encoding.CodePages (>= 4.6.0)
-
net6.0
- System.Drawing.Common (>= 6.0.0)
- System.Text.Encoding.CodePages (>= 6.0.0)
-
Xamarin.iOS 0.0
- SkiaSharp (>= 1.68.0)
- System.Buffers (>= 4.5.0)
- System.Memory (>= 4.5.3)
- System.Runtime.CompilerServices.Unsafe (>= 4.6.0)
- System.Text.Encoding.CodePages (>= 4.6.0)
NuGet packages (13)
Showing the top 5 NuGet packages that depend on Spire.PDF:
Package | Downloads |
---|---|
Spire.Office
Spire.Office for .NET is a combination of Enterprise-Level Office .NET components offered by E-iceblue. It includes Spire.Doc, Spire XLS, Spire.Presentation, Spire.PDF, Spire.DataExport, Spire.PDFViewer, Spire.DocViewer, Spire.Email and Spire.BarCode. Spire.Office contains the most up-to-date versions of the above .NET components. From Spire.Office 3.10.1, Spire.Office supports to work on .NET Core,.NET Standard, Xamarin. With Spire.Office for .NET, developers can create a wide range of applications. It enables developers to open, create, modify, convert, print, View MS Word, Excel, PowerPoint and PDF documents. Furthermore, it allows users to export data to popular files such as MS Word/Excel/RTF/Access, PowerPoint, PDF, XPS, HTML, XML, Text, CSV, DBF, Clipboard, SYLK, etc. As an independent Office .NET component, Spire.Office doesn't need Microsoft Office to be installed on neither the development nor target systems. In addition, it is a better alternative to MS Office Automation in terms of security, stability, scalability, speed, price and features. Spire.Office for .NET can be linked into any type of a 32-bit or 64-bit .NET application including ASP.NET, Web Services and WinForms for .NET Framework version 2.0 to 4.5, .NET Core, .NET standard 2.0 |
|
Spire.Officefor.NETStandard
It only contains the dlls for .NET standard 2.0 |
|
Spire.PDFViewer
Spire.PDFViewer is an easy-to-use and reliable .NET PDF Viewer component. With Spire.PDFViewer, developers can create any WinForms application to open, view and print PDF document in C# and Visual Basic on .NET(2.0, 3.5, 4.0,4.6 and 4.0 ClientProfile). Open and View Spire.PDFViewer for .NET can open and view PDF/A-1B, PDF/X1A and even encrypted document. When viewing, developers can view with zoom in/out, page up/down, moving to the first/last page or fitting page/width. Also, hand tool is available. Elements Spire.PDFViewer for .NET supports kinds of PDF fonts, including TrueType, Type0, Type1, Type3, OpenType and CJK font. It also support hyperlinks, DeviceN color space and JPEG2000, DCT, CCITT Fax Image format in PDF. Print Spire.PDFViewer enables developers to print PDF document and supports page setup before printing, such as margins, page orientation, page size etc. Also, developers can choose specified one page, current page, mulitple pages or all pages to print. PDF to Image Spire.PDFViewer for .NET enables developers to save PDF pages(specified one, current page, mulitple pages, all pages) to image formats(.bmp, .png, .jpeg). |
|
James.Testing.Pdf
A library of helpers for the purpose of testing pdf documents/content. It is named after the author who wrote the book of James in the Bible. (James 1:2-3) |
|
Spire.OfficeViewer
Spire.OfficeViewer for .NET is a powerful Office Viewer component for .NET. It enables developers to load Word, Excel, Presentation slides and PDF files and view them from code. As a standalone .NET class library, Spire.OfficeViewer mainly focus on how to display office documents and PDF files. It enables developers/programmers to directly view and print office files and PDFs for their .NET applications. It supports to view the DOC, DOCX, DOT, XLS, XLSX, XLSB, ODS, PPT, PPTX, PPS, PPSX and PDF file formats. Spire.OfficeViewer is a totally independent .NET library which doesn't need to install Microsoft Office and Adobe Reader or any other 3rd party software/library on system. Main Functions Load office documents and PDF from file and view; Switch to target page Fit page; Fit width; Fit height Page down/up; Zoom in/out; Hand tool; Print; |
GitHub repositories (1)
Showing the top 1 popular GitHub repositories that depend on Spire.PDF:
Repository | Stars |
---|---|
anpho/ofd2pdf
OFD->PDF转换工具(WinExe & CLI)
|
Version | Downloads | Last updated |
---|---|---|
10.10.5 | 3,587 | 10/24/2024 |
10.10.0 | 5,333 | 10/10/2024 |
10.9.0 | 11,265 | 9/14/2024 |
10.8.1 | 13,162 | 8/20/2024 |
10.7.21 | 9,202 | 7/29/2024 |
10.7.13 | 6,023 | 7/17/2024 |
10.6.25 | 15,627 | 6/26/2024 |
10.6.7 | 6,929 | 6/13/2024 |
10.6.0 | 13,045 | 6/4/2024 |
10.5.5 | 16,497 | 5/16/2024 |
10.4.7 | 19,004 | 4/23/2024 |
10.4.2 | 9,929 | 4/12/2024 |
10.3.16 | 19,137 | 3/28/2024 |
10.3.7 | 13,284 | 3/14/2024 |
10.2.2 | 32,651 | 2/4/2024 |
10.1.17 | 18,179 | 1/26/2024 |
10.1.0 | 21,968 | 1/5/2024 |
9.12.0 | 36,421 | 12/8/2023 |
9.11.4 | 18,423 | 11/10/2023 |
9.11.0 | 11,145 | 11/3/2023 |
9.10.2 | 41,708 | 10/13/2023 |
9.9.9 | 19,062 | 9/21/2023 |
9.9.3 | 14,039 | 9/8/2023 |
9.8.5 | 39,199 | 8/10/2023 |
9.7.17 | 16,844 | 7/27/2023 |
9.7.14 | 15,586 | 7/20/2023 |
9.7.0 | 21,320 | 7/3/2023 |
9.6.0 | 56,733 | 6/5/2023 |
9.5.4 | 15,817 | 5/23/2023 |
9.4.12 | 21,728 | 4/28/2023 |
9.4.0 | 30,549 | 4/6/2023 |
9.3.4 | 49,302 | 3/15/2023 |
9.3.2 | 14,644 | 3/7/2023 |
9.2.6 | 24,174 | 2/15/2023 |
9.2.2 | 19,043 | 2/3/2023 |
9.1.0 | 84,979 | 1/5/2023 |
8.12.7 | 11,072 | 12/29/2022 |
8.12.5 | 18,965 | 12/14/2022 |
8.11.10 | 12,464 | 11/30/2022 |
8.11.2 | 31,939 | 11/16/2022 |
8.11.0 | 16,806 | 11/3/2022 |
8.10.5 | 12,799 | 10/19/2022 |
8.9.16 | 15,511 | 9/30/2022 |
8.9.2 | 18,864 | 9/14/2022 |
8.8.6 | 21,560 | 8/17/2022 |
8.7.9 | 23,224 | 7/27/2022 |
8.7.2 | 22,660 | 7/5/2022 |
8.6.1 | 36,604 | 6/8/2022 |
8.5.0 | 27,187 | 5/6/2022 |
8.4.15 | 25,237 | 4/21/2022 |
8.3.9 | 41,468 | 3/23/2022 |
8.2.2 | 40,880 | 2/22/2022 |
8.1.4 | 70,070 | 1/19/2022 |
8.1.0 | 45,976 | 1/6/2022 |
7.12.1 | 58,128 | 12/8/2021 |
7.11.1 | 85,378 | 11/9/2021 |
7.10.4 | 33,054 | 10/19/2021 |
7.10.0 | 11,749 | 10/9/2021 |
7.9.6 | 35,427 | 9/22/2021 |
7.9.2 | 24,629 | 9/2/2021 |
7.8.8 | 14,646 | 8/20/2021 |
7.8.2 | 21,645 | 8/4/2021 |
7.7.10 | 22,000 | 7/22/2021 |
7.6.15 | 23,040 | 6/29/2021 |
7.6.1 | 22,146 | 6/10/2021 |
7.5.0 | 29,100 | 5/7/2021 |
7.4.13 | 19,109 | 4/27/2021 |
7.4.5 | 48,164 | 4/14/2021 |
7.3.3 | 19,800 | 3/19/2021 |
7.3.1 | 10,975 | 3/12/2021 |
7.2.9 | 18,721 | 2/20/2021 |
7.2.5 | 17,789 | 2/7/2021 |
7.2.0 | 11,648 | 2/2/2021 |
7.1.10 | 17,828 | 1/15/2021 |
7.1.0 | 16,514 | 1/7/2021 |
6.12.20 | 9,422 | 12/25/2020 |
6.12.10 | 8,945 | 12/10/2020 |
6.12.3 | 9,734 | 12/7/2020 |
6.11.6 | 20,473 | 11/13/2020 |
6.11.0 | 9,261 | 11/4/2020 |
6.10.9 | 11,456 | 10/27/2020 |
6.10.4 | 14,534 | 10/20/2020 |
6.10.0 | 10,012 | 10/10/2020 |
6.9.16 | 20,918 | 9/28/2020 |
6.9.0 | 44,669 | 9/3/2020 |
6.8.5 | 33,203 | 8/17/2020 |
6.8.1 | 16,950 | 8/6/2020 |
6.7.12 | 15,304 | 7/29/2020 |
6.7.8 | 22,758 | 7/20/2020 |
6.7.6 | 9,690 | 7/8/2020 |
6.7.2 | 16,010 | 7/6/2020 |
6.5.15 | 31,525 | 5/28/2020 |
6.5.9 | 9,771 | 5/18/2020 |
6.5.6 | 32,850 | 5/13/2020 |
6.4.11 | 92,043 | 4/20/2020 |
6.4.4 | 10,478 | 4/10/2020 |
6.3.16 | 12,502 | 3/30/2020 |
6.3.10 | 31,742 | 3/23/2020 |
6.3.0 | 25,990 | 3/4/2020 |
6.2.6 | 13,893 | 2/19/2020 |
6.2.1 | 29,288 | 2/11/2020 |
6.1.8 | 33,409 | 1/21/2020 |
6.1.4 | 16,075 | 1/9/2020 |
5.12.15 | 26,311 | 12/16/2019 |
5.12.3 | 8,604 | 12/5/2019 |
5.11.18 | 9,420 | 11/29/2019 |
5.11.2 | 26,019 | 11/7/2019 |
5.11.0 | 9,601 | 11/1/2019 |
5.10.8 | 15,399 | 10/22/2019 |
5.10.2 | 17,737 | 10/11/2019 |
5.9.16 | 12,467 | 9/30/2019 |
5.9.6 | 11,004 | 9/18/2019 |
5.8.16 | 36,011 | 8/30/2019 |
5.8.7 | 33,472 | 8/13/2019 |
5.8.2 | 11,349 | 8/6/2019 |
5.7.20 | 8,999 | 7/31/2019 |
5.7.0 | 33,126 | 7/2/2019 |
5.6.31 | 8,757 | 7/1/2019 |
5.6.2 | 23,028 | 6/6/2019 |
5.5.21 | 16,867 | 5/24/2019 |
5.4.21 | 55,648 | 5/1/2019 |
5.4.20 | 6,325 | 4/29/2019 |
5.4.9 | 15,095 | 4/15/2019 |
5.4.1 | 13,957 | 4/4/2019 |
5.3.8 | 1,083,167 | 3/19/2019 |
5.3.2 | 8,712 | 3/11/2019 |
5.2.15 | 8,532 | 2/28/2019 |
5.2.3 | 8,898 | 2/14/2019 |
5.1.33 | 8,447 | 1/31/2019 |
5.1.16 | 8,244 | 1/19/2019 |
5.1.4 | 9,642 | 1/11/2019 |
5.1.0 | 12,537 | 1/2/2019 |
4.12.8 | 30,759 | 12/18/2018 |
4.12.2 | 11,564 | 12/7/2018 |
4.11.12 | 10,884 | 11/28/2018 |
4.11.8 | 41,928 | 11/16/2018 |
4.11.5 | 11,302 | 11/9/2018 |
4.11.3 | 35,092 | 11/8/2018 |