I have a new requirement within my application. All images needs to be in RGB format (no CMYK) and the subsampling should be deactivated. I have managed to check the CMYK check, but struggling with the subsampling requirement.
Now I have to implement a method like this:
private bool IsSubsamplingActivated(byte[] imageContent)
{
// code goes here
}
Unfortunately I really don't know how to solve that issue :-( Could you guys give me a hint how to solve this? External library? Some dotNET classes?