Accusoft.ImageGear.Core
26.5.0
dotnet add package Accusoft.ImageGear.Core --version 26.5.0
NuGet\Install-Package Accusoft.ImageGear.Core -Version 26.5.0
<PackageReference Include="Accusoft.ImageGear.Core" Version="26.5.0" />
paket add Accusoft.ImageGear.Core --version 26.5.0
#r "nuget: Accusoft.ImageGear.Core, 26.5.0"
// Install Accusoft.ImageGear.Core as a Cake Addin #addin nuget:?package=Accusoft.ImageGear.Core&version=26.5.0 // Install Accusoft.ImageGear.Core as a Cake Tool #tool nuget:?package=Accusoft.ImageGear.Core&version=26.5.0
The Accusoft.ImageGear.Core
package contains all the functionality needed to read and write raster images in a variety of formats, as well as algorithms to manipulate image metadata and image pixel values.
Getting Started
Converting between image formats with ImageGear is simple:
using System.IO;
using ImageGear.Formats;
using ImageGear.Core;
ImGearCommonFormats.Initialize();
ImGearPage page;
using (FileStream stream = File.OpenRead("input-image.png"))
page = ImGearFileFormats.LoadPage(stream, 0);
using (FileStream outputStream = File.OpenWrite("output-image.jpg"))
ImGearFileFormats.SavePage(page, outputStream, ImGearSavingFormats.JPG);
For more examples of how to use ImageGear's API, check out our sample code repository on github.
Supported Image Formats
ImageGear.Core includes all the common formats users have come to expect, such as BMP, JPEG, TIFF, PNG, and SVG, as well as a range of other industry-standard formats. See the File Formats Reference page of our documentation for a complete list.
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
- System.Drawing.Common (>= 5.0.3)
- System.Management (>= 6.0.0)
NuGet packages (20)
Showing the top 5 NuGet packages that depend on Accusoft.ImageGear.Core:
Package | Downloads |
---|---|
Accusoft.ImageGear.Pdf
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](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). |
|
Accusoft.ImageGear.Recognition
Provides all the features required to quickly add optical character recognition (OCR) to your applications. The OCR library provides accurate, full-page recognition results with a variety of output options to suit your application's needs. Our OCR SDK supports most common use-case scenarios, such as: * Supports over 50 different languages, and language detection. * Accepts over 100 image, graphic, and document formats as input. This image data can be binary, gray, or color. * OCR to Text. * OCR to PDF. * Recognize a document image and export results to PDF, text, or XML formats. * Use zone-based processing. * Pre-process images. * Output confidence values for post-recognition processing. * Increase recognition accuracy with built-in and user-defined dictionaries. * Supports languages including English, Eastern and Western European languages, Asian languages, Cyrillic languages (e.g., Russian), Baltic languages, Turkish, and Greek. THIRD PARTY NOTICE OPEN TEXT TECHNOLOGY Portions of the Accusoft Toolkit may include Open Text Inc. intellectual property licensed to Accusoft by Open Text Corporation or one of its affiliates (the "Open Text Technology"). The Open Text Technology includes any upgrades, derivative works, modifications, updates, additions, and copies thereof. The Open Text Technology is the intellectual property of OPEN TEXT Corporation or one of its affiliates and is protected under trademarks, registered trademarks, copyrights, and/or patents in the United States and/or other countries. ALL RIGHTS RESERVED. |
|
Accusoft.ImageGear.Recognition.Asian
Provides a set of objects that provide access to document recognition technology. Includes support for Japanese, Korean and Chinese � Traditional and Simplified. THIRD PARTY NOTICE OPEN TEXT TECHNOLOGY Portions of the Accusoft Toolkit may include Open Text Inc. intellectual property licensed to Accusoft by Open Text Corporation or one of its affiliates (the "Open Text Technology"). The Open Text Technology includes any upgrades, derivative works, modifications, updates, additions, and copies thereof. The Open Text Technology is the intellectual property of OPEN TEXT Corporation or one of its affiliates and is protected under trademarks, registered trademarks, copyrights, and/or patents in the United States and/or other countries. ALL RIGHTS RESERVED. |
|
Accusoft.ImageGear.Vector
Includes all functionality to work with the DWG, DXF, CGM, DGN, DWF, HPGL, SVG, and U3D vector file formats. |
|
Accusoft.ImageGear.WinForms
Provides a set of objects to simplify development of the WinForms based applications. |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
26.5.0 | 1,244 | 10/2/2024 |
26.4.0 | 2,258 | 4/26/2024 |
26.3.0 | 8,695 | 11/7/2022 |
26.2.0 | 1,925 | 10/13/2022 |
26.1.0 | 1,752 | 9/8/2022 |
26.0.1 | 1,509 | 4/1/2022 |
26.0.0 | 1,177 | 1/31/2022 |
25.2.5 | 623 | 10/18/2024 |
25.2.4 | 577 | 7/26/2024 |
25.2.3 | 1,823 | 2/28/2024 |
25.2.2 | 6,993 | 9/13/2023 |
25.2.1 | 5,777 | 3/15/2023 |
25.2.0 | 8,499 | 8/18/2022 |
25.1.1 | 20,592 | 7/30/2021 |
25.1.0 | 7,236 | 4/20/2021 |
25.0.1 | 7,649 | 3/1/2021 |
24.14.0 | 11,160 | 8/17/2020 |
24.13.0 | 8,674 | 5/26/2020 |
24.12.17 | 8,434 | 2/28/2020 |
24.11.11 | 8,902 | 6/24/2019 |
24.10.8 | 8,424 | 3/27/2019 |
24.9.1 | 10,980 | 1/2/2019 |
24.8.1 | 8,808 | 10/3/2018 |
24.7.2 | 8,661 | 9/4/2018 |
24.6.4 | 8,567 | 7/31/2018 |
24.5.10 | 8,716 | 7/5/2018 |
24.4.3 | 8,569 | 5/30/2018 |
24.3.3 | 8,651 | 5/3/2018 |
24.3.2 | 8,511 | 5/2/2018 |
24.2.6 | 8,704 | 4/3/2018 |
24.1.4 | 8,800 | 2/22/2018 |
24.0.6 | 8,794 | 1/31/2018 |
23.5.5 | 8,630 | 11/29/2017 |
23.4.3 | 8,506 | 10/30/2017 |
23.3.3 | 17,788 | 9/18/2017 |
23.2.94 | 8,678 | 7/25/2017 |
23.1.5 | 8,375 | 6/27/2017 |
23.1.4 | 8,657 | 6/26/2017 |
23.0.52 | 8,461 | 5/11/2017 |
23.0.1 | 8,428 | 6/20/2017 |
22.2.42 | 9,433 | 6/24/2016 |
22.1.4 | 8,502 | 4/12/2016 |
22.0.36 | 8,464 | 3/3/2016 |