Question

I've found this. However it is for php, does an equivalent library exist for asp.net?

Is there anything similar to this for ASP.net that mimics the kind of filters you'll find on instagram?

Was it helpful?

Solution

I've recently found AForge.net which amongst many things will do image processing and has a select amount of basic filters I believe will be able to achieve what I need it for. The docs on there site are also really good.

To apply a Sepia filter to an image:

Bitmap bmp = new Bitmap(pathToImage);

Sepia filter = new Sepia();

filter.ApplyInPlace(bmp);
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top