7 lines
151 B
Python
7 lines
151 B
Python
|
|
from reportlab.pdfgen import canvas
|
||
|
|
def hello(c):
|
||
|
|
c.drawString(100,100,"Hello World")
|
||
|
|
c = canvas.Canvas("hello.pdf")
|
||
|
|
hello(c)
|
||
|
|
c.showPage()
|
||
|
|
c.save()
|