Hi, On 2015-08-05 10:32, Amirouche Boubekki wrote:
Can you share a small snippet that works for images? I'd like to output a pdf, but I can't.
Not sure what you are having problems with, but this produces a PDF: (define (pdf-file) (let* ((sf (cairo-pdf-surface-create 842 595 "test.pdf")) (cr (cairo-create sf))) (let ((pi (* 2 (acos 0)))) (cairo-set-line-width cr 10) (cairo-arc cr 400 300 20 0 (* 2 pi)) (cairo-stroke cr) (cairo-surface-finish sf)))) /Tomas