How to Add Dynamic Image to Docusign Document via Docusign API(如何通过 Docusign API 将动态图像添加到 Docusign 文档)
问题描述
I don't know if this is possible with the Docusign API, but I was curious if you can add dynamic images to a template document. The purpose of this dynamic image would be to set a logo for the document depending on who's sending it. I know Docusign has branding, but we would like this image to be in a particular location on the template document. If anyone knows if this is possible, I would be extremely happy if you can point me in the right direction.
I've done plenty of research and checked a little into the c# SDK and I'm not seeing too much on how to implement something like this.
Any information on this would help or even some kind of workaround.
Sounds like you want to use image A
in a specific location within the document (or image B
, etc).
This is an aspect of the document itself. So you'll need to send DocuSign a new document (that contains the different image) each time.
To put it another way, you want custom document generation. There are several ways to accomplish custom document generation with DocuSign:
- Use the DocuSign document generation system.
- Create the document on the fly. Depending on your needs, one easy format is to send DocuSign an HTML document. Note that you'll need to BASE64 encode the image(s) and use inline CSS.
- Create/update the document on the fly by creating a custom PDF. There are many PDF libraries to choose from.
- Create/update another format such as Word. You can programmatically change Word documents.
Added
Another option for creating a document is to supply HTML as part of the Responsive Signing / Smart Sections feature. This enables you to create an HTML document that includes the field (tab) definitions within the HTML itself. Documentation part 1. (See the navigation pane for the additional docs.)
这篇关于如何通过 Docusign API 将动态图像添加到 Docusign 文档的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何通过 Docusign API 将动态图像添加到 Docusign 文


- 输入按键事件处理程序 2022-01-01
- 如何用自己压缩一个 IEnumerable 2022-01-01
- C# 中多线程网络服务器的模式 2022-01-01
- Web Api 中的 Swagger .netcore 3.1,使用 swagger UI 设置日期时间格式 2022-01-01
- 带有服务/守护程序应用程序的 Microsoft Graph CSharp SDK 和 OneDrive for Business - 配额方面返回 null 2022-01-01
- MoreLinq maxBy vs LINQ max + where 2022-01-01
- 良好实践:如何重用 .csproj 和 .sln 文件来为 CI 创建 2022-01-01
- C#MongoDB使用Builders查找派生对象 2022-09-04
- WebMatrix WebSecurity PasswordSalt 2022-01-01
- 在哪里可以找到使用中的C#/XML文档注释的好例子? 2022-01-01