Commit fade21b8 authored by Ilya Kirillov's avatar Ilya Kirillov

Fixed bug #32988

parent 7f8e942d
......@@ -895,11 +895,12 @@ namespace PdfReader
{
if (eFontType != fontType1C && eFontType != fontType1COT
&& eFontType != fontTrueTypeOT && eFontType != fontCIDType0C
&& eFontType != fontCIDType0COT && eFontType != fontCIDType2OT)
&& eFontType != fontCIDType0COT && eFontType != fontCIDType2OT
&& eFontType != fontCIDType2)
{
if (eFontType == fontType1 || eFontType == fontTrueType)
eFontType = fontType1C;
else if (eFontType == fontCIDType0 || eFontType == fontCIDType2)
else if (eFontType == fontCIDType0)
eFontType = fontCIDType0C;
}
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment