An open API service indexing awesome lists of open source software.

https://github.com/khachatur/imageprocessingframework

A .NET Core plugin framework for applying various image effects. This framework supports handling multiple images simultaneously, allows easy addition and removal of plugins without modifying the core application code, and provides a flexible configuration system. This solution is designed with enterprise-level scalability and maintainability.
https://github.com/khachatur/imageprocessingframework

extensible image-processing maintainable net-core-8 object-oriented-design plugin-framework scalable

Last synced: 3 months ago
JSON representation

A .NET Core plugin framework for applying various image effects. This framework supports handling multiple images simultaneously, allows easy addition and removal of plugins without modifying the core application code, and provides a flexible configuration system. This solution is designed with enterprise-level scalability and maintainability.

Awesome Lists containing this project

README

        

#### Explanation:
- **Name Property**: Returns the name of the plugin.
- **ApplyEffect Method**:
- Checks for required parameters `width` and `height`.
- Simulates the resizing of the image data.
- Uses the `ResizeImage` method to perform a dummy resize operation.
- **ResizeImage Method**:
- Uses `System.Drawing` to create a new resized image.
- Sets high-quality resizing settings.
- Converts the resized image back to a byte array.

This implementation simulates how the plugin would resize an image. You can replace the dummy logic with actual image processing code as needed. The rest of the framework should remain the same to handle various plugins and effects in a scalable and maintainable way.