#! /usr/bin/env python

import cairo

pdf_surface = cairo.PDFSurface("/tmp/test.pdf", 597.6, 842.4)
cr = cairo.Context(pdf_surface)
del pdf_surface

png = cairo.ImageSurface.create_from_png ("/home/benjamin/Desktop/clearlooks.png")

cr.set_source_surface(png)
cr.paint()

del cr
