如何生成“嵌入子集”使用 CPAN 模块 PDF::API2 的字体
有谁知道如何使用 PDF::API2 生成“嵌入子集”字体?我在其文档中找不到任何内容,它所做的一切似乎只是创建“嵌入”或不嵌入字体:
my $pdf = PDF::API2->open('blank.pdf');
my $page = $pdf->openpage(1);
my $txt = $page->text;
my $font = $pdf->ttfont('verdana.ttf');
$txt->textlabel( 170, 170, $font, 20, 'text Embeded TTF font');
另一个模块 Text::PDF::TTFont 继承自 Text::PDF 做得正确。
谢谢!
Does anyone know how to generate an "Embeded subset" font using PDF::API2? I can't find any in its documentation and all it tries to do seem to create either just "Embeded" or not embeded font:
my $pdf = PDF::API2->open('blank.pdf');
my $page = $pdf->openpage(1);
my $txt = $page->text;
my $font = $pdf->ttfont('verdana.ttf');
$txt->textlabel( 170, 170, $font, 20, 'text Embeded TTF font');
Another module Text::PDF::TTFont which inherits from Text::PDF does it correctly.
thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我可以创建一个嵌入子集
I can create an embedded subset