20.01.2013 Views

ReportLab Graphics and SVG Integratation

ReportLab Graphics and SVG Integratation

ReportLab Graphics and SVG Integratation

SHOW MORE
SHOW LESS

You also want an ePaper? Increase the reach of your titles

YUMPU automatically turns print PDFs into web optimized ePapers that Google loves.

portLab<br />

epor ReportL<br />

portLa<br />

Provide high configurability<br />

portLa<br />

Properties<br />

Repor Rep<br />

Allow low user-level OO-knowledge<br />

Intended use by setting properties<br />

Subclassing for non-st<strong>and</strong>ard use<br />

Runtime attribute validation:<br />

portL Repor<br />

>>> from reportlab.graphics import shapes<br />

>>> from reportlab.lib import colors<br />

>>> rect = shapes.Rect(0, 0, 100, 50)<br />

>>> rect.fillColor = colors.red<br />

>>> rect.filColor = colors.red ### typo!<br />

Traceback (most recent call last):<br />

[...]<br />

AttributeError: Illegal attribute 'filColor' in class Rect<br />

>>> rect.fillColor = 42 ### wrong type!<br />

Traceback (most recent call last):<br />

[...]<br />

AttributeError: Illegal assignment of '42' to 'fillColor'<br />

in class Rect ]]>

Hooray! Your file is uploaded and ready to be published.

Saved successfully!

Ooh no, something went wrong!