Some minor bugfixes:

- invalid color transformation from CMYK color profiles
    - invalid unicode mapping for CID fonts
This commit is contained in:
Jakub Melka
2019-12-27 14:17:33 +01:00
parent 0c7b0e6c3d
commit 092173bbd9
2 changed files with 6 additions and 2 deletions

View File

@ -1785,6 +1785,7 @@ PDFFontCMap PDFFontCMap::createFromData(const QByteArray& data)
{
unicodeValue = (unicodeValue << 8) + static_cast<unsigned char>(byteArray[i]);
}
return unicodeValue;
}
}