-
Hi folks, Congrats on creating this library! I have a .NET Core 2.1 web api project which we plan on doing some image manipulation. Mainly, we just need to resize JPG and PNG photos uploads, but also extract some information from the photos. One feature we need is obtaining the average RGB value of a photo. Is this something we can accomplish with ImageSharp? Is the library also compatible with .NET core 2.1 under windows? Thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
The library gives you access to the pixels of the image so you can average them yourself. I'm not sure if there's a built-in function to do it for you. According to the main Readme.md, the library is built against .Net Standard 1.3 so it will run on .Net Core 2.1. Note: I'm not a dev for this library. |
Beta Was this translation helpful? Give feedback.
The library gives you access to the pixels of the image so you can average them yourself. I'm not sure if there's a built-in function to do it for you.
According to the main Readme.md, the library is built against .Net Standard 1.3 so it will run on .Net Core 2.1.
Note: I'm not a dev for this library.