Found 2,664 packages
Image Processor is an easy to use and extend processing library written in C#. Its fluent API makes common imaging tasks very simple to perform. Methods include; Resize, Rotate, Rounded Corners, Flip, Crop, Watermark, Filter, Saturation, Brightness, Contrast, Quality, Format, Vignette, Gaussian Blur, Gaussian Sharpen, and Transparency. If you use ImageProcessor please get in touch on my twitter @james_m_south. Feedback is always welcome.
ImageMagick is a powerful image manipulation library that supports over 100 major file formats (not including sub-formats). With Magick.NET you can use ImageMagick without having to install ImageMagick on your server or desktop. Visit https://github.com/dlemstra/Magick.NET/tree/main/docs before installing to help you decide the best version.
ImageMagick is a powerful image manipulation library that supports over 100 major file formats (not including sub-formats). With Magick.NET you can use ImageMagick without having to install ImageMagick on your server or desktop. Visit https://github.com/dlemstra/Magick.NET/tree/main/docs before installing to help you decide the best version.
ImageMagick is a powerful image manipulation library that supports over 100 major file formats (not including sub-formats). With Magick.NET you can use ImageMagick without having to install ImageMagick on your server or desktop. Visit https://github.com/dlemstra/Magick.NET/tree/main/docs before installing to help you decide the best version.
ImageUltimate is an ASP.NET Image resizer and a .NET Image Processor which supports ASP.NET Core 5.0+, ASP.NET Core 2.1+, ASP.NET MVC 3.0+ and ASP.NET WebForms 4.7.2+ web applications/web sites. ImageUltimate can also be used for conversion between several image formats with .NET 5.0+ or .NET Core 3.1 and .NET Framework 4.7.2+ console/desktop applications. Features: - Can load and save many image file formats (raster, vector and camera raw). - Provides a fluent interface for easily chaining image manipulation commands. - Vastly faster (10x) than System.Drawing namespace and optimized specifically for web use. Minimal memory usage and the ability to process very large images in a fast manner. - Provides detailed information about an image file like format, size, DPI, pixel format and metadata like EXIF and IPTC. - Fast thumbnail generation, smartly looks for a EXIF thumbnail, removes black stripes above and below it and resizes it down further if needed. - Provides these image transforms: Resize, LiquidResize (seam carving), Crop, TrimBorders, Rotate, Flip. - Provides these image color/tone corrections and filters: Brightness, Contrast, Enhance, Blur, Sharpen. - Caches generated images both on server and browser with a smart versioning algorithm. A unique and browser-cacheable url is generated according to the chained commands and whenever you change these commands (or modify the source image externally), the url will vary and this will cause browser to automatically detect changes (no need to press F5). - Generates SEO friendly urls. By default the file name of the source image is used but it's possible to override this file name for SEO purposes. - Single managed DLL (works both on 32-bit and 64-bit) for easy deployment and no dependencies. No messy Web.config settings. Just drop it in your bin folder and you are ready to go. - Strongly-typed API for web, no need to learn and memorize messy url querystring parameters, just chain commands with the help of intellisense. ASP.NET MVC usage example: @this.ImageTag("Image1.jpg", task => task.ResizeWidth(300)) ASP.NET WebForms usage example: <%=this.ImageTag("Image1.jpg", task => task.ResizeWidth(300)) %> General usage examples: using (var imageTask = new ImageTask(@"C:\Pictures\Picture1.jpg")) imageTask.ResizeWidth(300).Save(@"C:\Output\Picture2.jpg"); Note: This package contains a fully working version of the product, however without a license key it will run in trial mode. This means after 30 days, the generated images will be watermarked with a red "ImageUltimate" text at the bottom right corner.
Xamarin iOS/Mac bindings to decode WebP file format.
Supported Platforms: • NETStandard • NETFramework Includes more than 200 image processing functions, including blank page detection, scanned document image clean up, medical image enhancement, color correction, noise reduction, edge detection, text and MICR detection, and so much more. Most LEADTOOLS image processing functions support region of interest, so that only a region of an image is processed. Additionally, many of the image processing functions support signed and unsigned image data. LEADTOOLS also offers other related packages so you can create complete, full-featured imaging applications that include 150+ formats, conversion, viewers, and more. To see all that LEADTOOLS has to offer, go to https://www.leadtools.com Use the following link to register for a LEADTOOLS license file that is required to use this NuGet. Additionally, the link provides access to the LEADTOOLS Installer. The Installer includes 100’s of demo applications with source code to jump start your development: https://bit.ly/LEADTOOLS_NUGET
HTML-to-Image converter for C#/.NET (WkHtmlToImage wrapper). Can render web page or SVG to image (png, jpg formats). Useful for generating URL thumbnail.
ImageMagick is a powerful image manipulation library that supports over 100 major file formats (not including sub-formats). With Magick.NET you can use ImageMagick without having to install ImageMagick on your server or desktop. Visit https://github.com/dlemstra/Magick.NET/tree/main/docs before installing to help you decide the best version.
ImageMagick is a powerful image manipulation library that supports over 100 major file formats (not including sub-formats). With Magick.NET you can use ImageMagick without having to install ImageMagick on your server or desktop. Visit https://github.com/dlemstra/Magick.NET/tree/main/docs before installing to help you decide the best version.
ImageMagick is a powerful image manipulation library that supports over 100 major file formats (not including sub-formats). With Magick.NET you can use ImageMagick without having to install ImageMagick on your server or desktop. Visit https://github.com/dlemstra/Magick.NET/tree/main/docs before installing to help you decide the best version.
This is the native C++ API for image formats in GizmoSDK
ZXing.Net is a port of ZXing, an open-source, multi-format 1D/2D barcode image processing library originally implemented in Java. It has been ported by hand with a lot of optimizations and improvements. It is compatible with .Net 2.0/3.5/4.x/5.x/6.x/7.x/8.x/9.x, Windows RT Class Library and Components, UWP, .Net Standard 1.x and 2.0x, .Net Core App 3.x, Silverlight 4, Silverlight 5, Windows Phone 7.x and Windows Phone 8.x and Xamarin.Android
Image Loading standard formats.
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).
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](https://github.com/Accusoft/imagegear-net-samples) 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](https://help.accusoft.com/ImageGear/latest/webframe.html#file-formats-reference.html) 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](https://help.accusoft.com/ImageGear/latest/webframe.html).
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.
ImageGlue is a toolkit for the creation and modification of still images. It can be used in .NET desktop applications or in .NET server pages. Read and write a host of media formats including: BMP, PNG, TIFF, Fax TIFF, JPEG / JFIF, GIF, Photoshop (PSD), QuickDraw PICT, Targa, QuickTime Image (QTIF), Silicon Graphics (SGI), MacPaint, FlashPix (FPX), Macromedia Flash™ 4 (SWF), Movie (MOV), QTVR, Cubic VR, AVI (Microsoft Audio Video Interleaved), XML / SMIL. Draw image files or data, text, lines, shapes - unfilled, filled or textured. Perform arbitrary transforms - rotation, skews, scaling - on any of these objects. ImageGlue is much like System.Drawing or WPF but rather more sophisticated. The crucial thing is not so much that it supports so many more image file formats - though it does - but that it supports them so much better. Do you really care about the Targa file format? Probably not. However you probably do care about TIFF and ImageGlue supports TIFF - and many other formats - so much better than System.Drawing. Working in multiple color spaces ImageGlue allows unfettered access and control over graphics. Like System.Drawing and WPF, ImageGlue works in RGB. But it also works in CMYK, grayscale, Lab, device and spot colors. It supports sophisticted graphical formats like PSD, PDF, PostScript and EPS. QuickStart: Just write code! For documentation and code samples check the ".NET Docs" referenced in the Project URL. If you need a license for remote deployment see the documentation for how to copy your local license to a remote machine. The tools folder contains the settings application if that is something you need.
FreeImage is an Open Source library project for developers who would like to support popular graphics image formats like PNG, BMP, JPEG, TIFF and others as needed by today's multimedia applications. FreeImage is easy to use, fast, multithreading safe, compatible with all 32-bit or 64-bit versions of Windows, and cross-platform (works both with Linux and Mac OS X).
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.