<?php $pdfdoc = pdf_new(); if (!pdf_open_file($pdfdoc, '')) { echo 'erreur!'; exit; } pdf_begin_page($pdfdoc, 300, 300); if ($font = pdf_findfont($pdfdoc, 'Times-Roman', 'host', 0)) { pdf_setfont($pdfdoc, $font, 10); } pdf_set_value($pdfdoc, 'textrendering', 0); pdf_add_note($pdfdoc, 100, 100, 180, 40, 'Contenu de la note', 'Titre', 'aide', 0); pdf_show_xy($pdfdoc, 'Example', 100, 100); pdf_end_page($pdfdoc); pdf_close($pdfdoc); $data = pdf_get_buffer($pdfdoc); header('Content-type: application/pdf'); header('Content-disposition: inline; filename=example.pdf'); header('Content-length: '.strlen($data)); echo $data; ?>
|