JagPDF
Prev Up Home Next

Overview

This chapter provides a guided tour of JagPDF features. The majority of code examples is in Python but it should be easy to deduce corresponding code for other languages.

Almost all code fragments in this document assume the following context:

import jagpdf

doc = jagpdf.create_file("example.pdf")
doc.page_start(597.6, 848.68)
canvas = doc.page().canvas()

#
# Here comes the code fragment.
#

doc.page_end()
doc.finalize()
Prev Up Home Next