[reportlab-users] i am asking again about the arabic thing, on the hope that anyone might reply back
Jerome Alet
reportlab-users@reportlab.com
Sun, 2 Nov 2003 01:29:14 +0100
--AqsLC8rIMeq19msA
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
On Sat, Nov 01, 2003 at 04:15:23PM -0800, sarah el-lawindy wrote:
>
> really thank u for ur fast reply, i did ur modification in the
> code but it did not work 2, any other options.
The very simple attached program creates a PDF document called "hello.pdf"
It works. Modify it to add your code.
bye,
Jerome Alet
--
"A non-free program is a predatory social system that keeps people
in a state of domination and division, and uses the spoils to
dominate more." - RMS
--AqsLC8rIMeq19msA
Content-Type: text/plain; charset=us-ascii
Content-Disposition: attachment; filename="testprog.py"
from reportlab.pdfgen import canvas
c = canvas.Canvas("hello.pdf")
c.drawString(300, 300, "Hello")
c.showPage()
c.save()
--AqsLC8rIMeq19msA--