A stamp signature is a special type of electronic signature that has the visual appearance of a round seal and its visual parameters can be set programmatically.
Every stamp signature can have multiple “stamp lines” with custom text and different line thicknesses, colors, font weights and sizes. Here is an example of how a stamp signature created with GroupDocs.Siganture may look like:
GroupDocs.Signature provides the StampSignOptions class to specify different options for Stamp signature:
Stamp type - Round or Square;
Height and width in pixels;
Alignment and position within the document page;
and many more.
Each Stamp option contains inner and outer lines. Inner lines represent vertical lines inside the stamp, while outer lines represent circles (or rectangles based on stamp type) around the stamp with their own text, border settings, background etc.
Here are the steps to add a Stamp signature to a document with GroupDocs.Signature:
Create a new instance of the Signature class and pass the source document path as a constructor parameter.
Instantiate the StampSignOptions object according to your requirements and specify appropriate options.
This example shows how to add a Stamp signature to a document.
// The path to the documents directory.
constfilePath=Constants.SAMPLE_PDF;// Assuming Constants.SAMPLE_PDF is defined elsewhere
constfileName=path.basename(filePath);constoutputFilePath=path.join(Constants.OutputPath,'SignWithStamp',fileName);constsignature=newsignatureLib.Signature(filePath);// Create stamp sign options
constoptions=newsignatureLib.StampSignOptions();// Set stamp signature position
options.setLeft(100);options.setTop(100);// Setup first external line of Stamp
constouterLine=newsignatureLib.StampLine();outerLine.setText(" * European Union * European Union * European Union * European Union * European Union * ");outerLine.getFont().setSize(12);outerLine.setHeight(22);outerLine.setTextBottomIntent(6);//outerLine.setTextColor(Color.WHITE);
//outerLine.setBackgroundColor(Color.BLUE);
options.getOuterLines().add(outerLine);// Inner square lines - horizontal lines inside the rings
constinnerLine=newsignatureLib.StampLine();innerLine.setText("John");//innerLine.setTextColor(Color.RED);
constsignFont=newsignatureLib.SignatureFont();signFont.setSize(20);signFont.setBold(true);innerLine.setFont(signFont);innerLine.setHeight(40);options.getInnerLines().add(innerLine);// Sign document to file
signature.sign(outputFilePath,options);console.log(`\nSource document signed successfully.\nFile saved at ${outputFilePath}`);
Summary
This guide explains how to apply stamp-based signatures to documents using GroupDocs.Signature . It covers the process of creating a stamp signature, customizing its appearance, and positioning it on the document. The signed document can then be saved with the stamp signature applied.
More resources
GitHub Examples
You may easily run the code above and see the feature in action in our GitHub examples: