Embed image in pdf/docx file

Is there any way to embed image on pdf/word doc? I have a requirement as follows:
Customer fill up some contract information and upload digital signature in Appian which will create a printable version of contract form with signature and will be downloadable.

  Discussion posts and replies are publicly visible

Parents
  • 0
    Certified Lead Developer
    In the template press ctrl + F9 to insert a field. Then right click on that and select merge field. In the merge field name write the below code --
    [#list logo as logo].
    Now insert any image.Then close the list by writing [/#list] following the similar way as discussed above.
    Now go to "Bookmark" option in the Insert tab in word document. Add a new bookmark by the name "logo".
    Now in the smart service DOCX from Dynamic Template in the "images" field in the input tab write the below code ---
    ={logo:cons!DDG_images} where the constant contains the list of images that you want to display.

    Hope this will solve the issue.
Reply
  • 0
    Certified Lead Developer
    In the template press ctrl + F9 to insert a field. Then right click on that and select merge field. In the merge field name write the below code --
    [#list logo as logo].
    Now insert any image.Then close the list by writing [/#list] following the similar way as discussed above.
    Now go to "Bookmark" option in the Insert tab in word document. Add a new bookmark by the name "logo".
    Now in the smart service DOCX from Dynamic Template in the "images" field in the input tab write the below code ---
    ={logo:cons!DDG_images} where the constant contains the list of images that you want to display.

    Hope this will solve the issue.
Children