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.
15 lines
399 B
15 lines
399 B
import os
|
|
|
|
from reportlab.pdfbase import pdfmetrics
|
|
from reportlab.pdfbase.ttfonts import TTFont
|
|
|
|
from chordsheet.document import Document, Style
|
|
from chordsheet.render import Renderer
|
|
|
|
pdfmetrics.registerFont(TTFont('FreeSans', os.path.join('fonts', 'FreeSans.ttf')))
|
|
|
|
doc = Document.newFromXML('examples/test.xml')
|
|
style = Style(unitWidth=10)
|
|
ren = Renderer(doc, style)
|
|
|
|
ren.savePDF('test.pdf')
|