简体   繁体   English

DocuSign在不使用PDF文档的x和y坐标的情况下添加签名字段

[英]DocuSign add signature fields without using x and y coordinates on a PDF document

I wanted to add signature fields without using X and Y coordinations. 我想添加签名字段而不使用X和Y坐标。 My existing flattened pdf files will contain several signature fields on them. 我现有的拼合pdf文件将在其上包含多个签名字段。 I want to find a way to generate signature fields in DocuSign with existing signature locations. 我想找到一种在DocuSign中使用现有签名位置生成签名字段的方法。 The original PDF its XFA type I flatten pdf before send it to DocuSign. 原始PDF及其XFA I型会先将PDF展平,然后再将其发送到DocuSign。 Please help me to resolve this issue. 请帮助我解决此问题。

Without using this method 不使用此方法

 signHere.XPosition = "100";
 signHere.YPosition = "150";

You can actually place any tab at a location based on document content. 实际上,您可以根据文档内容将任何选项卡放在某个位置。 For instance, if you had the text "Please Sign Here" somewhere in your document, you can place any tag right on or near this text very easily, for example. 例如,如果您在文档中的某处有“请在此处签名”文本,则可以很容易地在此文本上或附近放置任何标签。 To do this you could use the following JSON to define your tab(s): 为此,您可以使用以下JSON定义标签:

"tabs": {
    "signHereTabs": [
        {
            "anchorString": "Please Sign Here:" 
        }
    ]
}

The above example would place a signature tab where the text "Please Sign Here" is present on the pdf. 上面的示例将在PDF上出现“请在此处签名”的文本处放置一个签名选项卡。 One common approach that many developers take here is to embed content into the documents themselves such as the string \\s1 for example. 许多开发人员在这里采用的一种常见方法是将内容本身嵌入到文档中,例如字符串\\ s1。 They additionally set the font color to the same color as the background where the string is placed (usually white) and this in turn makes the string \\s1 invisible so that the recipient only sees the DocuSign tab at this location. 他们还将字体颜色设置为与放置字符串的背景相同的颜色(通常为白色),这反过来使字符串\\ s1不可见,因此收件人只能在此位置看到DocuSign选项卡。

Other option available with PDF is, if you have PDF Form fields and if it as per DS standards then DocuSign can convert those PDF form fields to DocuSign Tabs. PDF可用的其他选项是,如果您具有PDF表单字段,并且符合DS标准,则DocuSign可以将这些PDF表单字段转换为DocuSign选项卡。 For instance, if Adobe form field name contains DocuSignSignHere or eSignSignHere then automatically DocuSign will put a DocuSign SignHere Tab in place of this form field. 例如,如果Adobe表单字段名称包含DocuSignSignHere或eSignSignHere,则DocuSign会自动将DocuSign SignHere选项卡放置在此表单字段的位置。 You can checkout complete list here . 您可以在此处结帐完整列表。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM