Adobe.PDF.Library.LM.NETFramework
18.26.0
Prefix Reserved
See the version list below for details.
dotnet add package Adobe.PDF.Library.LM.NETFramework --version 18.26.0
NuGet\Install-Package Adobe.PDF.Library.LM.NETFramework -Version 18.26.0
<PackageReference Include="Adobe.PDF.Library.LM.NETFramework" Version="18.26.0" />
paket add Adobe.PDF.Library.LM.NETFramework --version 18.26.0
#r "nuget: Adobe.PDF.Library.LM.NETFramework, 18.26.0"
// Install Adobe.PDF.Library.LM.NETFramework as a Cake Addin #addin nuget:?package=Adobe.PDF.Library.LM.NETFramework&version=18.26.0 // Install Adobe.PDF.Library.LM.NETFramework as a Cake Tool #tool nuget:?package=Adobe.PDF.Library.LM.NETFramework&version=18.26.0
Adobe PDF Library for .NET Framework 64-Bit, Free Trial
This package supports 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
- 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 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. |
-
.NETFramework 4.0.3
- 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.41.0 | 1,071 | 10/7/2024 |
18.40.0 | 868 | 9/13/2024 |
18.39.0 | 820 | 8/14/2024 |
18.38.0 | 309 | 7/9/2024 |
18.36.0 | 856 | 5/29/2024 |
18.35.0 | 1,338 | 5/3/2024 |
18.34.0 | 1,363 | 4/10/2024 |
18.32.0 | 3,072 | 2/19/2024 |
18.31.0 | 761 | 1/24/2024 |
18.30.0 | 980 | 12/26/2023 |
18.29.0 | 1,194 | 11/21/2023 |
18.26.0 | 1,216 | 10/16/2023 |
18.23.0 | 3,252 | 9/7/2023 |
18.22.0 | 3,859 | 7/31/2023 |
18.21.0 | 4,285 | 7/5/2023 |
18.20.0 | 3,904 | 6/2/2023 |
18.18.1 | 3,676 | 5/4/2023 |
18.18.0 | 4,069 | 4/28/2023 |
18.15.0 | 3,873 | 4/7/2023 |
18.13.0 | 4,282 | 2/6/2023 |
18.11.1 | 3,548 | 1/17/2023 |
18.11.0 | 3,501 | 12/6/2022 |
18.10.0 | 3,818 | 11/7/2022 |
18.9.1 | 3,943 | 10/12/2022 |