Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/csharp/268.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
C# Instagram过滤器图像处理asp.net_C#_Asp.net_System.drawing - Fatal编程技术网

C# Instagram过滤器图像处理asp.net

C# Instagram过滤器图像处理asp.net,c#,asp.net,system.drawing,C#,Asp.net,System.drawing,我找到了。然而,对于php,是否存在用于asp.net的等效库 ASP.net是否有类似的功能,可以模仿instagram上的过滤器?我最近发现,在众多功能中,有哪些功能可以进行图像处理,并且有一定数量的基本过滤器,我相信这些过滤器能够实现我所需的功能。网站上的文档也非常好 要将乌贼墨过滤器应用于图像,请执行以下操作: Bitmap bmp = new Bitmap(pathToImage); Sepia filter = new Sepia(); filter.ApplyInPlace(b

我找到了。然而,对于php,是否存在用于asp.net的等效库

ASP.net是否有类似的功能,可以模仿instagram上的过滤器?

我最近发现,在众多功能中,有哪些功能可以进行图像处理,并且有一定数量的基本过滤器,我相信这些过滤器能够实现我所需的功能。网站上的文档也非常好

要将乌贼墨过滤器应用于图像,请执行以下操作:

Bitmap bmp = new Bitmap(pathToImage);

Sepia filter = new Sepia();

filter.ApplyInPlace(bmp);
我最近发现,在许多事情中,哪一件会做图像处理,并且有一些基本的过滤器,我相信它们能够实现我所需要的。网站上的文档也非常好

要将乌贼墨过滤器应用于图像,请执行以下操作:

Bitmap bmp = new Bitmap(pathToImage);

Sepia filter = new Sepia();

filter.ApplyInPlace(bmp);