2

我正在使用 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);

但这给了我一个错误,例如:

不能在对象范围内调用函数。

我不确定我在哪里犯了错误。

谢谢。

4

1 回答 1

1

你还没有放置end_template_ext函数。让你的代码看起来像:

/* define the template */
template = p.begin_template_ext(template_width, template_height, "");
...place marks on the template using text, vector, and image functions...
p.end_template_ext(0, 0);
...
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);
于 2012-09-10T07:03:30.563 回答