Text Extraction is creating an extra signature field
Friday, December 1, 2017 at 06:25amI'm trying to send a document for signature using text extraction. It's working, but it's putting an extra signature field in the document that I don't want. My code looks like:
.WithDocument(DocumentBuilder.NewDocumentNamed("SLPEval") .EnableExtraction() .WithExtractionType(ExtractionType.TEXT_TAGS_ONLY) .FromStream(ms, DocumentType.PDF) .WithSignature(SignatureBuilder.SignatureFor("[email protected]") .WithId(new SignatureId("signer1")) .WithStyle(SignatureStyle.HAND_DRAWN) ) )and I have the text
{{esl:signer1:capture:size(200,50)}}in my pdf. The document ends up with a signature field in the correct place, but it also puts an unwanted signature field in the upper left corner of the document. Any idea why that would be happening?
Reply to: Text Extraction is creating an extra signature field
Wednesday, December 13, 2017 at 06:18pmReply to: Text Extraction is creating an extra signature field
Friday, December 1, 2017 at 08:16amReply to: Text Extraction is creating an extra signature field
Thursday, December 14, 2017 at 04:54amReply to: Text Extraction is creating an extra signature field
Thursday, December 14, 2017 at 05:37am