You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
358 B

  1. from reportlab.pdfbase import pdfmetrics
  2. from reportlab.pdfbase.ttfonts import TTFont
  3. from chordsheet.document import Document, Style
  4. from chordsheet.render import savePDF
  5. pdfmetrics.registerFont(TTFont('FreeSans', os.path.join('fonts', 'FreeSans.ttf')))
  6. doc = Document.newFromXML('examples/example.xml')
  7. style = Style()
  8. savePDF(doc, style, 'test.pdf')