几天来,我一直在尝试让 CheckBox 或 Radio Button 使用 PDF::API2 进行渲染,但一直未能成功。
我翻阅了 PDFMark 参考资料、PDF 规范以及我能找到的任何示例。我可以获得简单的 Widget 注释来渲染,但无法获得任何需要外观流或外观字典才能正常工作的东西。下面是一些尝试设置复选框的测试代码:
#!/usr/bin/perl
use PDF::API2;
use PDF::API2::Basic::PDF::Utils;
# set up pdf
my $pdfOptions = {};
my $pdf = PDF::API2->new( \$pdfOptions );
my $page = $pdf->page();
$page->mediabox( 'Letter' );
my $AcroForm = PDFDict();
$AcroForm->{NeedAppearances} = PDFBool( 'true' );
$AcroForm->realise;
my @Annots;
my @Fields;
my $resourceObj = PDFDict();
$resourceObj->{Type} = PDFName( 'Font' );
$resourceObj->{Subtype} = PDFName( 'Type1' );
$resourceObj->{Name} = PDFName( 'ZaDb' );
$resourceObj->{BaseFont} = PDFName( 'ZapfDingbats' );
$resourceObj->realise();
$AcroForm->{DR} = PDFDict();
$AcroForm->{DR}->{Font} = PDFDict();
$AcroForm->{DR}->{ZaDb} = $resourceObj;
$AcroForm->realise();
my $item = PDFDict();
$item->{P} = $page;
$item->{Type} = PDFName( 'Annot' );
$item->{Subtype} = PDFName( 'Widget' );
$item->{FT} = PDFName( 'Btn' );
my $yes = PDFName( 'Yes' );
my $off = PDFName( 'Off' );
$item->{P} = $page;
$item->{Type} = PDFName( 'Annot' );
$item->{Subtype} = PDFName( 'Widget' );
$item->{Rect} = PDF::API2::Basic::PDF::Literal->new( "[100 300 200 400]" );
$item->{FT} = PDFName( 'Btn' );
$item->{T} = PDFStr( 'Urgent' );
$item->{V} = PDFName( 'Yes' );
$item->{AS} = PDFName( 'Yes' );
$item->{AP} = PDFDict();
$item->{AP}->{N} = PDFDict();
# My understanding is that these would be nulled to be used with NeedAppearances
$item->{AP}->{N}->{$yes} = PDFNull();
$item->{AP}->{N}->{$off} = PDFNull();
$item->realise();
push @Annots, $item;
push @Fields, $item if( $AcroForm );
$page->{Annots} = PDFArray( @Annots );
$AcroForm->{Fields} = PDFArray(@Fields) if( $AcroForm );
$pdf->{Root}->{AcroForm} = $AcroForm if( $AcroForm );
print $pdf->stringify();
exit;
我希望看到这个页面中间呈现一个复选框,而不是我得到一个空的、不可用的注释。我正在尝试使 NeedAppearances 标志起作用,因为我已经放弃尝试正确的外观流/外观字典,但我会感谢使用这两种方法的解决方案。