Clamp colors in ICCBasedColorSpaceDetails

This commit is contained in:
BobLd
2024-01-15 16:27:51 +00:00
parent 096ebdbf70
commit 5345422a87

View File

@@ -1239,6 +1239,12 @@
// TODO - use ICC profile
for (int c = 0; c < values.Length; c++)
{
int i = 2 * c;
values[c] = PdfFunction.ClipToRange(values[c], Range[i], Range[i + 1]);
}
return AlternateColorSpace.GetColor(values);
}