You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've rendered the pdf with stdfonts.py for special characters. I'm using python 3.5
Line 59
canv.drawString(x+44, y, chr(byt).decode(encLabel,'ignore').encode('utf8'))
not working with python 3.5
Without decoding part
canv.drawString(x+44, y, chr(byt).encode('utf8'))
it does not output characters 128-160.
Cheers,
Kateryna
The text was updated successfully, but these errors were encountered:
Hi,
I've rendered the pdf with stdfonts.py for special characters. I'm using python 3.5
Line 59
canv.drawString(x+44, y, chr(byt).decode(encLabel,'ignore').encode('utf8'))
not working with python 3.5
Without decoding part
canv.drawString(x+44, y, chr(byt).encode('utf8'))
it does not output characters 128-160.
Cheers,
Kateryna
The text was updated successfully, but these errors were encountered: