我正在使用 PDFLib 引擎生成 pdf 文件。我已经使用了它的模板功能,我的代码如下:
/* define the template */
template = p.begin_template_ext(width, height, "");
...template using text, vector, and image functions...
p.begin_page(page_width, page_height);
/* use the template */
p.fit_image(template, 0.0, 0.0, "");
...more page marking operations...
p.end_page();
...
p.close_image(template);
但这给了我一个错误,例如:
不能在对象范围内调用函数。
我不确定我在哪里犯了错误。
谢谢。