[X] I have verified that I am running the latest version of ImageSharp
[X] I have verified if the problem exist in both DEBUG and RELEASE mode
[X] I have searched open and closed issues to ensure it has not already been reported
ImageSharp version
2.1.3
Other ImageSharp packages and versions
none
Environment (Operating system, version and so on)
Windows 10
.NET Framework version
.NET 5
Description
XML Comment for IImageInfo.Metadata.ICCProfile appears to be incorrect.
It says
Gets or sets the list of ICC profiles.
But it returns a single ICC Profile (as expected). The comment confused me and made me wonder if there's actually supposed to be a way to get multiple profiles.
Comment should probably read:
Gets or sets the ICC profile.
Steps to Reproduce
Create a new project and use ImageSharp to Identify a file:
var info = SixLabors.ImageSharp.Image.Identify(imgFilepath);
var icc = info.Metadata.IccProfile;
Highlight over "IccProfile" to see the intellisense XML comment.
Prerequisites
DEBUG
andRELEASE
modeImageSharp version
2.1.3
Other ImageSharp packages and versions
none
Environment (Operating system, version and so on)
Windows 10
.NET Framework version
.NET 5
Description
XML Comment for IImageInfo.Metadata.ICCProfile appears to be incorrect.
It says
But it returns a single ICC Profile (as expected). The comment confused me and made me wonder if there's actually supposed to be a way to get multiple profiles.
Comment should probably read:
Steps to Reproduce
Create a new project and use ImageSharp to Identify a file:
Highlight over "IccProfile" to see the intellisense XML comment.
Images
No response