Adobe.PDF.Library.LM.NET
18.23.0
See the version list below for details.
dotnet add package Adobe.PDF.Library.LM.NET --version 18.23.0
NuGet\Install-Package Adobe.PDF.Library.LM.NET -Version 18.23.0
<PackageReference Include="Adobe.PDF.Library.LM.NET" Version="18.23.0" />
paket add Adobe.PDF.Library.LM.NET --version 18.23.0
#r "nuget: Adobe.PDF.Library.LM.NET, 18.23.0"
// Install Adobe.PDF.Library.LM.NET as a Cake Addin
#addin nuget:?package=Adobe.PDF.Library.LM.NET&version=18.23.0
// Install Adobe.PDF.Library.LM.NET as a Cake Tool
#tool nuget:?package=Adobe.PDF.Library.LM.NET&version=18.23.0
Adobe PDF Library for .NET 6, 64-Bit, Free Trial
This package supports x64 Windows, Linux, & macOS ARM as deployment targets and is a full-featured version of the product that will expire after some time. Contact evalsupport@datalogics.com to extend the evaluation.
Samples | Documentation | Release Notes | Support | Homepage
Built upon Adobe source code used for Acrobat, Datalogics Adobe PDF Library SDK provides stable, reliable code and the flexibility to develop with C# or VB (VB.NET) (interfaces are also available for C++ and Java). APDFL is the most complete SDK for PDF creation, manipulation and management. Leading choice for enterprise/larger organizations of developers and independent software vendors (ISVs) who need to incorporate Adobe's PDF functionality into their own internal or external applications.
Live support from PDF development experts.
Licensing and Pricing options are customized to your usage and requirements. For OEM and SaaS customers we will provide you with a non-license managed software package for easier distribution embedded within your applications.
Hello World Samples
Open a PDF Document, Render the Page, and Save it as a JPEG
using Datalogics.PDFL;
using (Library library = new Library())
{
Document document = new Document("Sample_Input/ducky.pdf");
Page page = document.GetPage(0);
Image renderedImage = page.GetImage(page.CropBox, new PageImageParams());
renderedImage.Save("renderedImage.jpg", ImageType.JPEG);
}
Create a PDF Document, Create a Page, Add Text to the Page, Save as a New PDF
using Datalogics.PDFL;
using (Library library = new Library())
{
Document document = new Document();
Page newPage = document.CreatePage(Document.BeforeFirstPage, new Rect(0, 0, 612, 792));
TextRun textRun = new TextRun("Hello World!", new Font("Times-Roman",
FontCreateFlags.Subset), new GraphicState(), new TextState(),
new Matrix(12, 0, 0, 12, 72, 720));
Text text = new Text();
text.AddRun(textRun);
newPage.Content.AddElement(text);
newPage.UpdateContent();
document.Save(SaveFlags.Full, "text-added.pdf");
}
Open a PDF Document, Convert it to a PDF/A-3b Document, Save as a New PDF
using Datalogics.PDFL;
using (Library library = new Library())
{
Document document = new Document("Sample_Input/invoice.pdf");
PDFAConvertResult pdfaResult = document.CloneAsPDFADocument(PDFAConvertType.RGB3b,
new PDFAConvertParams());
pdfaResult.PDFADocument.Save(pdfaResult.PDFASaveFlags, "converted-out.pdf");
}
Extensive PDF Capabilities
Generate Output Preview images for Soft Proofing (Prepress) documents prior to final printing.
Add support to convert PDF documents to PDF/X-6.
PDF/A conversion support now covers: PDF/A-1a, PDF/A-1b, PDF/A-2a, PDF/A-2b, PDF/A-2u, PDF/A-3a, PDF/A-3b, PDF/A3u
Conversion of PDF to Microsoft Office Word, Excel, and PowerPoint (.docx, .xlsx, .pptx) documents.
- Create and edit annotations
- Content creation and editing
- Color management and conversion
- Extraction of text, images, forms
- Redaction
- Content modification - merge, split, flatten, layers
- Compression / optimization / linearization for Fast Web View
- Display, Render, Print
- Conversion to PDF/A, PDF/X, EPS, PostScript, XPS, Factur-X, ZUGFeRD, image formats (JPG, TIFF, PNG, BMP)
- Forms - Import, export, flatten, AcroForms
- Image manipulation and conversion
- OCR
- Support for Optional Content Groups and PDF Layers
- Printing
- Security - Password, encrypt, watermark
- Search for and replace or edit text
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | 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-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
-
net6.0
- Adobe.PDF.Library.Resources (>= 1.0.0)
- Adobe.PDF.Library.SampleInput (>= 1.0.0)
- APDFL.OCR.Data.English (>= 1.0.1)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
18.29.0 | 781 | 11/21/2023 |
18.26.0 | 1,917 | 10/16/2023 |
18.23.0 | 2,501 | 9/7/2023 |
18.22.0 | 4,324 | 7/31/2023 |
18.21.0 | 6,454 | 7/5/2023 |
18.20.0 | 3,495 | 6/2/2023 |
18.19.0 | 3,493 | 5/8/2023 |
18.18.1 | 2,924 | 5/4/2023 |
18.18.0 | 3,036 | 4/28/2023 |
18.15.0 | 3,848 | 4/7/2023 |
18.13.0 | 3,412 | 2/6/2023 |
18.11.1 | 3,578 | 1/17/2023 |
18.11.0 | 3,150 | 12/6/2022 |
18.10.0 | 3,451 | 11/7/2022 |