https://github.com/stevehobbsdev/image-processor
A simple imaging utility for .Net using GDI+
https://github.com/stevehobbsdev/image-processor
Last synced: 11 months ago
JSON representation
A simple imaging utility for .Net using GDI+
- Host: GitHub
- URL: https://github.com/stevehobbsdev/image-processor
- Owner: stevehobbsdev
- License: mit
- Created: 2016-01-08T12:36:44.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2016-01-28T17:44:41.000Z (over 10 years ago)
- Last Synced: 2025-04-15T14:05:21.039Z (about 1 year ago)
- Language: C#
- Homepage:
- Size: 536 KB
- Stars: 4
- Watchers: 4
- Forks: 6
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
An image processing wrapper around GDI+, allowing you to apply one or more filters against an image source.
Out-of-the-box support:
* Conversion from one image type to another
* Image resizing and various strategies for resolving aspect ratio
* Edge detection
* GIF support
* Chaining filters together to perform complex operations on a single image
Filters can be stacked and queued so that they run one after the other in a process queue. The processor can accept filenames, streams or a GDI image to perform the processing on.
Roadmap:
* More comprehensive filter support for blurring, sharpening, watermarking, inverting, and more!
* Asynchronous processing support
* Batch processing
###Available on Nuget
Install through the Nuget UI inside Visual Studio, or through the Package Manager Console:
`$ install-package Simplicode.ImageProcessor`