我有一个通过XFDF预填充PDF字段的系统。
XFDF代码似乎很好,但当我尝试用PHP中的header()
打开它时,PDF会触发错误。
如果我忽略它并刷新页面,它可以正常工作并正确弹出表单。
以下是XFDF代码以及我正在使用的标题......
知道为什么PDF没有立即显示它?
<`?xml version="1.0" encoding="UTF-8" ?>
<`xfdf xmlns="http://ns.adobe.com/xfdf/" xml:space="preserve">
<'fields>
<`field name="user_name">
<`value>Some Name</value>
<'/field>
<`field name="course_name">
<`value>Some Course</value>
<`/field>
<`/fields>
<`f href="http://the_URL_to_the_PDF_that_needs_to_be_populated_with_the_XFDF info" />
<`/xfdf>
我正在尝试使用下面的header命令打开上面的内容。
header("Content-type: application/vnd.adobe.xfdf");
答案 0 :(得分:0)
尝试:
// No space after this opening tag
$xfdf =<<<'XFDF'
<?xml version="1.0" encoding="UTF-8" ?>
<xfdf xmlns="http://ns.adobe.com/xfdf/" xml:space="preserve">
<fields>
<field name="user_name"> <value>Some Name </field>
<field name="course_name"> <value>Some Course </field>
</fields>
<f href="http://the_URL_to_the_PDF_that_needs_to_be_populated_with_the_XFDF info" />
</xfdf>
XFDF; // No space before this closing tag
header('Content-type: application/vnd.adobe.xfdf');
echo $xfdf;
答案 1 :(得分:0)
使用Adobe推荐的格式
<?xml version="1.0" encoding="UTF-8"?>
<xfdf xmlns="http://ns.adobe.com/xfdf/" xml:space="preserve">
<f href="samples/AddressLabel.pdf"/>
<ids original="7A0631678ED475F0898815F0A818CFA1" modified="BEF7724317B311718E8675B677EF9B4E"/>
<fields>
<field name="name">
<value>Adobe Systems, Inc.</value>
</field>
<field name="address">
<value>345 Park Ave.</value>
</field>
<field name="status">
<value>us citizen</value>
</field>
</fields>
</xfdf>
Adobe参考文档中的更多信息:http://partners.adobe.com/public/developer/en/xml/xfdf_2.0.pdf