Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Reportlab : How to switch between portrait and landscape?

I am using reportlab to generate a pdf report automatically from dynamic data. As the content sometimes is too large to be displayed in portrait, I am trying to switch to landscape for large content.

Here is how my report generation works :

Main function :

doc = DocTemplate(...)           //Doctemplate is a customed BaseDocTemplate class
array = []
some_data= "Here is some data displayed in portrait" 

array.append(Paragraph(some_data))

large_data = "this data is too large to be displayed in portrait"
array.append(Paragraph(large_data))

... // Some more data is added after this

doc.build(array, canvasmaker=NumberedCanvas)

What I am looking for is a way to be able to switch from portrait to landscape at each step, as I don't know the number of pages that will be needed to display it. I am still new to reportlab and even a bit with python, so I do not see how I can use the solutions provided by reportlab (PageTemplates, flowables) properly as I am building the whole document at the end.

Here are my other useful classes for this case :

class DocTemplate(BaseDocTemplate, ):
def __init__(self, filename, **kw):
    apply(BaseDocTemplate.__init__, (self, filename), kw)
    f = Frame(2.6*cm, 2.8*cm, 16*cm, 22.7*cm, id='f')
    pt = PageTemplate('RectPage', [f], onPage=beforeDrawPage, onPageEnd=afterDrawPage)
    //beforeDrawPage and afterDrawPage fill the headers of the page (that also need to be in landscape)
    self.addPageTemplates(pt)

I think I shall add another page template or frame, but I don't see how i can switch from one to the other during the data appending phase.

class NumberedCanvas(canvas.Canvas):
def __init__(self, *args, **kwargs):
    canvas.Canvas.__init__(self, *args, **kwargs)

    self._saved_page_states = []

def showPage(self):
    self._saved_page_states.append(dict(self.__dict__))
    self._startPage()

def save(self):
    """add page info to each page (page x of y)"""
    num_pages = len(self._saved_page_states)
    for state in self._saved_page_states:
        self.__dict__.update(state)
        self.draw_page_number(num_pages)
        canvas.Canvas.showPage(self)
    self.setTitle("Title")
    canvas.Canvas.save(self)
    self._doc.SaveToFile(self._filename, self)

def draw_page_number(self, page_count):
    self.setFont("Helvetica", 11)
    self.drawRightString(18.5*cm, 26.8*cm,
        "PAGE %d / %d" % (self._pageNumber, page_count))

I hope I did'nt forgot anything to be clear.

Many thanks in advance.

like image 412
Mathieu C. Avatar asked May 06 '11 15:05

Mathieu C.


3 Answers

Use the landscape and portrait functions that are already in the pagesizes module.

from reportlab.lib.pagesizes import letter, landscape
c = canvas.Canvas(file, pagesize=landscape(letter))
like image 113
Alex Avatar answered Nov 14 '22 15:11

Alex


I finally figured out the best way to do it by myself :

I added a new PageTemplate in my DocTemplate with landscape settings, and then simply used NextPageTemplate from the reportlab.platypus package :

array.append(NextPageTemplate('landscape'))

To get back in portrait, i use :

array.append(NextPageTemplate('portrait'))

This allows a pretty nice flexibility.

like image 31
Mathieu C. Avatar answered Nov 14 '22 14:11

Mathieu C.


This is how I switch between portrait and landscape modes, but I determine which orientation beforehand:

from reportlab.lib.pagesizes import letter, A4

lWidth, lHeight = letter

if orientation == 'landscape':
    canvas.setPageSize((lHeight, lWidth))
else:
    canvas.setPageSize((lWidth, lHeight))
like image 7
Jeff Bauer Avatar answered Nov 14 '22 15:11

Jeff Bauer