imazen / imageflow-dotnet

The official .NET API for Imageflow, the Rust image processing and optimization engine for web servers
GNU Affero General Public License v3.0
143 stars 25 forks source link

ImageResizer to ImageFlow #4

Closed nacoleman closed 6 years ago

nacoleman commented 6 years ago

Hi,

we have used ImageResizer for years now and we love it. We are looking to rebuild our application into .Net Core and so have been looking at ImageFlow.

I have seen a few examples of ImageFlow Middleware using imageflow-dotnet and have got this working to a point where it resizes the image etc.

My question might be due to purely not understanding the product but i wondered whether the configurations/extensions that were available for ImageResizer are in imageFlow. For example imageResizer>DiskCache.... should I set about writing the caching etc in my middleware or is this taken care of somewhere..

Apologies if i have missed documentation somewhere.

lilith commented 6 years ago

Middleware doesn't exist yet - the plan is to upgrade ImageResizer to use Imageflow.Net once Imageflow.Net has matured a bit more, at which point it will work that way.

For now you would need to write your own, or copy/paste from ImageResizer's source code (the commercial licenses permit that).

nacoleman commented 6 years ago

ok thanks for the info and quick reply.