drawString doesn't print
I try to use enter link description here this to generate page nums. The most important part: class PageNumCanvas(canvas.Canvas): """ http://code.activestate.com/recipes/546511-page-x-of-y-with-reportlab/ http://code.activestate.com/recipes/576832/ """ #———————————————————————- def __init__(self, *args, **kwargs): """Constructor""" super().__init__(*args, **kwargs) self.pages = [] #———————————————————————- def showPage(self): """ On a page break, add information to the list """ self.pages.append(dict(self.__dict__)) self._startPage() #———————————————————————- def save(self): """ Add… Read More drawString doesn't print