Hi,
I tried out the latest version 7.0.0.18, but still has the same issues in various places.
i.e.
If I do
The initial post composites two channel images also still not showing the correct result.
Can you look into the issues again?
Thank you.
P.S. Another recommendation is change Solarize method's parameter "factor" from double to Percentage to match ImageMagick's documentation. I had to play around to match the values.
I tried out the latest version 7.0.0.18, but still has the same issues in various places.
i.e.
If I do
convert.exe 1.jpg -colorspace HSB -channel B -separate +channel -solarize 50% 2.jpg
clone.ColorSpace = ColorSpace.HSB;
using (var layer = clone.Separate(Channels.Blue).First())
{
layer.Solarize(Quantum.Max / 2);
}
The convert.exe result will be gray scaled, but Magick.NET is not.The initial post composites two channel images also still not showing the correct result.
Can you look into the issues again?
Thank you.
P.S. Another recommendation is change Solarize method's parameter "factor" from double to Percentage to match ImageMagick's documentation. I had to play around to match the values.