Extending ImageProcessor
ImageProcessor is built with extensibility in mind. All the individual processors used within the ImageFactory methods
follow an interface IGraphicsprocessor
which allows developers to easily extend the library.
View the source code to see examples.
IGraphicsProcessor
All the individual image processors follow an interface IWebGraphicsprocessor
which allows developers to extend the library.
View the source code to see examples.
ISupportedImageFormat
It is also possible to extend the image formats that ImageProcessor is capable of manipulating by providing a new class implementing
the ISupportedImageFormat
` interface. ImageProcessor will automatically search for classes implementing that interface when initializing.
View the source code to see examples.