Skip to content

Instantly share code, notes, and snippets.

@CleitonDeLima
Created December 19, 2018 19:01
Show Gist options
  • Save CleitonDeLima/e52248c704db61ba7ef5b027cae4704a to your computer and use it in GitHub Desktop.
Save CleitonDeLima/e52248c704db61ba7ef5b027cae4704a to your computer and use it in GitHub Desktop.
def draw_text(self, text, x, y, text_width=80):
self.canvas.saveState()
text_lines = textwrap.fill(text, text_width).split('\n')
text = self.canvas.beginText(x, y)
for t in text_lines:
text.textLine(t)
self.canvas.drawText(text)
self.canvas.restoreState()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment