Accusoft.ImageGear.Pdf
26.5.0
dotnet add package Accusoft.ImageGear.Pdf --version 26.5.0
NuGet\Install-Package Accusoft.ImageGear.Pdf -Version 26.5.0
<PackageReference Include="Accusoft.ImageGear.Pdf" Version="26.5.0" />
paket add Accusoft.ImageGear.Pdf --version 26.5.0
#r "nuget: Accusoft.ImageGear.Pdf, 26.5.0"
// Install Accusoft.ImageGear.Pdf as a Cake Addin #addin nuget:?package=Accusoft.ImageGear.Pdf&version=26.5.0 // Install Accusoft.ImageGear.Pdf as a Cake Tool #tool nuget:?package=Accusoft.ImageGear.Pdf&version=26.5.0
The Accusoft.ImageGear.Pdf
package includes all the functionality needed to work with PDF and PostScript files. The package provides full multi-page reading and writing support for entire PDF documents, as well as for a specified set of a document's pages.
Getting Started
Working with PDFs in ImageGear is easy:
using ImageGear.Formats;
using ImageGear.Formats.PDF;
using System.IO;
// Initialize PDF support
ImGearCommonFormats.Initialize();
ImGearFileFormats.Filters.Add(ImGearPDF.CreatePDFFormat());
ImGearPDF.Initialize();
// Load a PDF document.
ImGearPDFDocument imGearPDFDocument = null;
using (FileStream stream = File.OpenRead("input.pdf"))
imGearPDFDocument = ImGearFileFormats.LoadDocument(stream) as ImGearPDFDocument;
// Save the PDF document to a multi-page tiff file
using (FileStream outputStream = File.Create("output.tif"))
ImGearFileFormats.SaveDocument(imGearPDFDocument, outputStream, 0, ImGearSavingModes.OVERWRITE, ImGearSavingFormats.TIF_DEFLATE, new ImGearSaveOptions());
// Terminate PDF support
imGearPDFDocument.Dispose();
ImGearPDF.Terminate();
For more examples of how to use ImageGear's API, check out our sample code repository on github.
Licensing
While you are evaluating the product, ImageGear doesn't require any licensing setup. The SDK is ready to use as soon as the NuGet package is installed. Until a paid license is purchased, image output will be watermarked. Contact info@accusoft.com for more information.
Documentation
API documentation and how-to content for ImageGear can be found online here.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. 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 | 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 was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.0
- Accusoft.ImageGear.Core (>= 26.5.0)
- System.Drawing.Common (>= 5.0.3)
NuGet packages (2)
Showing the top 2 NuGet packages that depend on Accusoft.ImageGear.Pdf:
Package | Downloads |
---|---|
Accusoft.ImageGear.All
ImageGear for .NET adds enterprise-class image viewing, compression, image processing and editing functions easily to any application, with support for PDF, more than 100 file formats and expanded functionality such as optical character recognition (OCR), barcode recognition, and support for medical DICOM images. ImageGear provides software developers access to the following technologies: * The ability to edit, convert, and compress over 100 image, graphic, and document formats, including raster and vector images, PDF, JPEG, JPEG 2000, GIF, TIFF, DICOM, CAD, ABIC Check Imaging, HD Photo, Camera RAW, and more. * Image viewing and display with powerful viewing-enhancement functions that take full advantage of Windows GUI features. ImageGear includes support for WinForms, WPF, and ASP.NET, and also provides GUI features such as common dialogs for image loading, saving, processing, and more. * Manipulating and managing PDF and PostScript files (PS, EPS). Our PDF library API supports most common use-case scenarios such as: rasterization, printing, splitting, merging, annotations, watermarking, text extraction, layers, encryption, optimization, PDF/A validation and conversion, and many more. * OCR capabilities, including support for over 50 different languages, image pre-processing, zone-based processing, and more. * Barcode support for postal, patch, 1D and 2D barcode recognition and creation. * Printing, TWAIN scanning, and the ability to hook web apps into scanner functions to deliver high-quality scanning directly to cloud storage repositories. * Advanced image processing capabilities, including hole punch removal, line removal, dotted line removal, noise removal, clean borders, negate, auto-crop, image enhancement, dilation, erosion, despeckle, deskew, rotate, edge detection, segmentation, among many others. * Annotation capabilities, including the ability to add, edit, and burn-in XML-based text and image annotations, stamps, and redactions. |
|
Accusoft.ImageGear.Office
The `Accusoft.ImageGear.Office` package allows users to load, render, convert, and read metadata from Microsoft Word, Excel, and PowerPoint files. ## Dependencies ## ImageGear depends on LibreOffice v7 or later to provide support for office documents. LibreOffice can be obtained from [libreoffice.org](https://www.libreoffice.org/). For full setup instructions for Windows and Linux, see the [Getting Started with ImageGear Office](https://help.accusoft.com/ImageGear/latest/webframe.html#getting-started-with-imagegear-office.html) page of our documentation. ## Getting Started ## ImageGear makes it simple to work with office documents: ``` using System.IO; using ImageGear.Formats; using ImageGear.Formats.PDF; using ImageGear.Formats.Office; // Initialize office support ImGearCommonFormats.Initialize(); ImGearFileFormats.Filters.Add(ImGearPDF.CreatePDFFormat()); ImGearFileFormats.Filters.Add(ImGearOffice.CreateWordFormat()); ImGearPDF.Initialize(); ImGearOffice.Initialize(@"C:\Program Files\LibreOffice\program"); // Load a Word document. ImGearWordDocument document = null; using (Stream stream1 = File.OpenRead("input.docx")) document = ImGearFileFormats.LoadDocument(stream1) as ImGearWordDocument; // Save the first page of the Word document to a PNG file using (Stream pngOutputStream = File.Create("output.png")) ImGearFileFormats.SavePage(document.Pages[0], pngOutputStream, ImGearSavingFormats.PNG); // Dispose the document and terminate office support document.Dispose(); ImGearOffice.Terminate(); ImGearPDF.Terminate(); ``` For more examples of how to use ImageGear's API, check out our [sample code repository](https://github.com/Accusoft/imagegear-net-samples) on github. ## Licensing ## While you are evaluating the product, ImageGear doesn't require any licensing setup. The SDK is ready to use as soon as the NuGet package is installed. Until a paid license is purchased, image output will be watermarked. Contact info@accusoft.com for more information. ## Documentation ## API documentation and how-to content for ImageGear can be found online [here](https://help.accusoft.com/ImageGear/latest/webframe.html). |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
26.5.0 | 1,969 | 10/2/2024 |
26.4.0 | 3,746 | 4/26/2024 |
26.3.0 | 12,295 | 11/7/2022 |
26.2.0 | 5,859 | 10/13/2022 |
26.1.0 | 5,996 | 9/8/2022 |
26.0.1 | 4,846 | 4/1/2022 |
26.0.0 | 3,762 | 1/31/2022 |
25.2.5 | 821 | 10/18/2024 |
25.2.4 | 1,012 | 7/26/2024 |
25.2.3 | 3,446 | 2/28/2024 |
25.2.2 | 15,412 | 9/13/2023 |
25.2.1 | 10,068 | 3/15/2023 |
25.2.0 | 8,580 | 8/18/2022 |
25.1.1 | 53,831 | 7/30/2021 |
25.1.0 | 7,219 | 4/20/2021 |
25.0.1 | 7,526 | 3/1/2021 |
24.14.0 | 19,491 | 8/17/2020 |
24.13.0 | 8,420 | 5/26/2020 |
24.12.17 | 7,861 | 2/28/2020 |
24.11.11 | 7,967 | 6/24/2019 |
24.10.8 | 8,928 | 3/27/2019 |
24.9.1 | 12,787 | 1/2/2019 |
24.8.1 | 9,646 | 10/3/2018 |
24.7.2 | 9,318 | 9/4/2018 |
24.6.4 | 8,422 | 7/31/2018 |
24.5.10 | 9,227 | 7/5/2018 |
24.4.3 | 7,035 | 5/30/2018 |
24.3.3 | 7,804 | 5/3/2018 |
24.3.2 | 7,695 | 5/2/2018 |
24.2.6 | 6,862 | 4/3/2018 |
24.1.4 | 8,380 | 2/22/2018 |
24.0.6 | 7,940 | 1/31/2018 |
23.5.5 | 7,805 | 11/29/2017 |
23.4.3 | 7,398 | 10/30/2017 |
23.3.3 | 14,549 | 9/18/2017 |
23.2.94 | 8,027 | 7/25/2017 |
23.1.5 | 7,231 | 6/27/2017 |
23.1.4 | 7,179 | 6/26/2017 |
23.0.52 | 7,563 | 5/11/2017 |
23.0.1 | 7,394 | 6/20/2017 |
22.2.42 | 8,265 | 6/24/2016 |
22.1.4 | 6,806 | 4/12/2016 |
22.0.36 | 7,166 | 3/3/2016 |