PDFlib サポートを PHP に取り込もうとしていますが、最終的に PDFlib のインストール方法を見つけた後、次のエラーが発生します。
Fatal error: Uncaught exception 'PDFlibException' with message 'Function must not be called in 'object' scope'
php.netのサンプル コードを使用します。
<?php
// create handle for new PDF document
$pdf = pdf_new();
// open a file
pdf_open_file($pdf, "test.pdf");
// start a new page (A4)
pdf_begin_page($pdf, 595, 842);
// get and use a font object
$arial = pdf_findfont($pdf, "Arial", "host", 1); pdf_setfont($pdf, $arial, 10);
// print text
pdf_show_xy($pdf, "There are more things in heaven and earth, Horatio,",50, 750);
pdf_show_xy($pdf, "than are dreamt of in your philosophy", 50,730);
// end page
pdf_end_page($pdf);
// close and save file
pdf_close($pdf);
?>
これを引き起こしている可能性のあるものについて誰か考えがありますか? グーグルで調べてみましたが、解決策を見つけることができませんでした。