The palette of an indexed color space can be stored in a StringToken

This commit is contained in:
Kasper Frank 2021-04-29 10:23:15 +02:00
parent d1a6debfb6
commit b225033916

View File

@ -181,6 +181,10 @@
{
tableBytes = tableStreamToken.Decode(filterProvider, scanner);
}
else if (DirectObjectFinder.TryGet(fourth, scanner, out StringToken stringToken))
{
tableBytes = stringToken.GetBytes();
}
else
{
return UnsupportedColorSpaceDetails.Instance;