Adobe.PDF.Library.LM.NETFramework 18.32.0

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
dotnet add package Adobe.PDF.Library.LM.NETFramework --version 18.32.0
NuGet\Install-Package Adobe.PDF.Library.LM.NETFramework -Version 18.32.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Adobe.PDF.Library.LM.NETFramework" Version="18.32.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Adobe.PDF.Library.LM.NETFramework --version 18.32.0
#r "nuget: Adobe.PDF.Library.LM.NETFramework, 18.32.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Adobe.PDF.Library.LM.NETFramework as a Cake Addin
#addin nuget:?package=Adobe.PDF.Library.LM.NETFramework&version=18.32.0

// Install Adobe.PDF.Library.LM.NETFramework as a Cake Tool
#tool nuget:?package=Adobe.PDF.Library.LM.NETFramework&version=18.32.0

LatestVersion Download Counter Windows VisualStudio

Adobe PDF Library for .NET Framework Free Trial

This package supports x86/x64 Windows only. This 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

  • NewFeature PDF/A conversion: PDF/A-4, PDF/A-4e, PDF/A-4f
  • Conversion of PDF to Microsoft Office Word, Excel, and PowerPoint (.docx, .xlsx, .pptx) documents.
  • Generate Output Preview images for Soft Proofing (Prepress) documents prior to final printing.
  • PDF/X conversion: PDF/X-1a, PDF/X-3, PDF/X-4, PDF/X-6.
  • PDF/A conversion: PDF/A-1a, PDF/A-1b, PDF/A-2a, PDF/A-2b, PDF/A-2u, PDF/A-3a, PDF/A-3b, PDF/A3u
  • 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 Compatible and additional computed target framework versions.
.NET Framework net403 is compatible.  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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

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.32.0 2,411 2/19/2024
18.31.0 580 1/24/2024
18.30.0 832 12/26/2023
18.29.0 1,079 11/21/2023
18.26.0 1,065 10/16/2023
18.23.0 2,902 9/7/2023
18.22.0 3,648 7/31/2023
18.21.0 3,944 7/5/2023
18.20.0 3,661 6/2/2023
18.18.1 3,395 5/4/2023
18.18.0 3,624 4/28/2023
18.15.0 3,668 4/7/2023
18.13.0 3,997 2/6/2023
18.11.1 3,334 1/17/2023
18.11.0 3,318 12/6/2022
18.10.0 3,617 11/7/2022
18.9.1 3,695 10/12/2022