vote up 0 vote down star

I am trying to use ReportLab with Unicode characters, but it is not working. I tried tracing through the code till I reached the following line:

class TTFont:
    # ...
    def splitString(self, text, doc, encoding='utf-8'):
        # ...
        cur.append(n & 0xFF) # <-- here is the problem!
        # ...

(This code can be found in ReportLab's repository, in the file pdfbase/ttfonts.py. The code in question is in line 1059.)

Why is n's value being manipulated?!

In the line shown above, n contains the code point of the character being processed (e.g. 65 for 'A', 97 for 'a', or 1588 for Arabic sheen 'ش'). cur is a list that is being filled with the characters to be sent to the final output (AFAIU). Before that line, everything was (apparently) working fine, but in this line, the value of n was manipulated, apparently reducing it to the extended ASCII range!

This causes non-ASCII, Unicode characters to lose their value. I cannot understand how this statement is useful, or why it is necessary!

So my question is, why is n's value being manipulated here, and how should I proceed about fixing this issue?

Edit:
In response to the comment regarding my code snippet, here is an example that causes this error:

my_doctemplate.build([Paragraph(bulletText = None, encoding = 'utf8',
    caseSensitive = 1, debug = 0,
    text = '\xd8\xa3\xd8\xa8\xd8\xb1\xd8\xa7\xd8\xac',
    frags = [ParaFrag(fontName = 'DejaVuSansMono-BoldOblique',
        text = '\xd8\xa3\xd8\xa8\xd8\xb1\xd8\xa7\xd8\xac',
        sub = 0, rise = 0, greek = 0, link = None, italic = 0, strike = 0,
        fontSize = 12.0, textColor = Color(0,0,0), super = 0, underline = 0,
        bold = 0)])])

In PDFTextObject._textOut, _formatText is called, which identifies the font as _dynamicFont, and accordingly calls font.splitString, which is causing the error described above.

flag

76% accept rate
1  
ReportLab does indeed support unicode text. Please post a self-contained code snippet that gives unexpected or incorrect output, so we can see what the problem might be. (The code you're pointing to seems to me to be related to generating an ASCII representation of the text as a low-fidelity stream to accompany the nice postscript stuff). – Jonathan Feinberg Oct 20 at 13:24
What happens if you change 0xFF to 0xFFFF ? – ~unutbu Oct 20 at 13:46

2 Answers

vote up 0 vote down

I'm pretty sure you'd need to change 0xFF to 0xFFFF to use 4-byte unicode characters, as ~unutbu suggested, hence using four bytes instead of two.

link|flag
vote up 0 vote down

Isn't the unicode text actually missing a u? Instead of

text = '\xd8\xa3\xd8\xa8\xd8\xb1\xd8\xa7\xd8\xac'

if shoud be

text = u'\xd8\xa3\xd8\xa8\xd8\xb1\xd8\xa7\xd8\xac'

EDIT:

Actually I notice that the bytes is an utf-8 encoding; try with:

text = unicode('\xd8\xa3\xd8\xa8\xd8\xb1\xd8\xa7\xd8\xac', 'utf-8')

For instance, on the command-line you should see the following:

>>> print unicode('\xd8\xa3\xd8\xa8\xd8\xb1\xd8\xa7\xd8\xac', 'utf-8')
... أبراج

(I can't read Arabic, but this seems to be a well-formed fragment)

link|flag
Thanks for your help, but that's not the issue. On Python 2.6.2, using the escape sequences above in a normal string yields the same output. – Hosam Aly Oct 20 at 15:52
Yes - splitString contains the code if type(text) is not UnicodeType: text = unicode(text, encoding or 'utf-8') which would convert a byte-string passed in to Unicode. – Vinay Sajip Oct 21 at 7:16

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.