Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Report Lab can't handle hebrew (unicode)

I am trying to generate the pdf from following python programming but generated output doesn't display hebrew letters correctly

# -*- coding: utf-8 -*-
from reportlab.pdfgen import canvas
def hello(c):
    c.drawString(100,100, "מה שלומך")
c = canvas.Canvas("hello.pdf")
hello(c)
c.showPage()
c.save()
like image 245
user634615 Avatar asked Jun 09 '12 06:06

user634615


1 Answers

This code (see below) works! All you need to do is place ArialHB.ttf (or any other font that supports Hebrew characters) into site-packages/reportlab/fonts...

The desired output will be at the bottom of the pdf page.

# -*- coding: utf-8 -*-

from reportlab.pdfgen import canvas 
from reportlab.pdfbase import pdfmetrics 
from reportlab.pdfbase.ttfonts import TTFont 

pdfmetrics.registerFont(TTFont('Hebrew', 'ArialHB.ttf'))

def hello(c):
    c.setFont("Hebrew", 14)
    c.drawString(10,10, u"מה שלומך".encode('utf-8'))

c = canvas.Canvas("hello.pdf") 
hello(c) 
c.showPage()
c.save()
like image 128
Gerald Spreer Avatar answered Nov 09 '22 15:11

Gerald Spreer