Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

See also the result of the configuration above (you can also find a comment in the xml where you can add a picture to the signature field):

Custom Signature Rendering SampleImage Modified


Examples

Example Configuration with "Script like" name, without IP address

...

Example Configuration with the script-like name printed just on a line


Custom Signature Rendering With LineImage RemovedCustom Signature Rendering With LineImage Added

Code Block
languagexml
themeEclipse
<SignatureRenderingLayouts>
    <Colors>
        <Color id="black" a="255" r="0" g="0" b="0" />
        <Color id="blue" a="255" r="64" g="64" b="255" />
        <Color id="transparent" a="0" r="255" g="255" b="255" />
        <Color id="teal" a="255" r="0" g="133" b="126" />
    </Colors>
    <Fonts>
        <Font id="Arial" family="Arial" size="10pt" bold="0" italic="0" underline="0" color="black" />
        <Font id="Arial teal" family="Arial" size="10pt" bold="0" italic="0" underline="0" color="teal" />
        <Font id="Arial 8" family="Arial" size="8pt" bold="0" italic="0" underline="0" color="black" />
        <Font id="Arial 8 teal" family="Arial" size="8pt" bold="0" italic="0" underline="0" color="teal" />
        <Font id="Arial bold" family="Arial" size="10pt" bold="1" italic="0" underline="0" color="black" />
        <Font id="Arial transp" family="Arial" size="10pt" bold="0" italic="0" underline="0" color="transparent" />
        <Font id="Arial 16transp" family="Arial" size="16pt" bold="0" italic="0" underline="0" color="transparent" />
        <Font id="Segoe Script" family="Segoe Script" size="10pt" bold="0" italic="0" underline="0" color="black" />
        <Font id="Segoe Script 16blue" family="Segoe Script" size="16pt" bold="0" italic="0" underline="0" color="blue" />
        <Font id="Segoe Script 16 teal" family="Segoe Script" size="16pt" bold="0" italic="0" underline="0" color="teal" />
    </Fonts>
    <Layouts>
 
        <Layout id="default" defaultFor="Click2Sign;Draw2Sign;Type2Sign;BiometricSignature" backgroundColor="white">
            <ExternalImageLayer />
            <Layer vAlign="top">
                <Row cellWidthMode="auto">
                    <Text width="20%" font="Arial transp">Signature: </Text><!-- dummy placeholder for positioning the signature underline -->
                    <Text font="Segoe Script 16 teal">______________________</Text> <!-- same height as the Signatory line, because we want the image to start below -->
                </Row>
            </Layer>
            <Layer vAlign="top">
                <Row cellWidthMode="auto">
                    <Text width="20%" font="Arial bold">Signature: </Text>
                    <Signatory font="Segoe Script 16blue" />
                </Row>
                <Row cellWidthMode="auto">
                    <Text width="25%" font="Arial transp" hAlign="right">Signature: </Text>
                    <Signatory font="Arial 8 teal" />
                    <Text font="Arial 8 teal">(</Text>
                    <DateTime format="dd-MM-yyyy HH:mm:ss (zzz)" font="Arial 8 teal" />
                    <Text font="Arial 8 teal">)</Text>
                    <Text width="5%" font="Arial transp" hAlign="right">_</Text>
                </Row>
                <Row>
                    <TranslatedTextWithColon width="20%" key="lbl_stamp_email" font="Arial bold" hAlign="right"/>
                    <Email font="Arial" />
                </Row>
            </Layer> 
        </Layout>
    </Layouts>
</SignatureRenderingLayouts>

Example Configuration with a graphical frame on the left-side


Custom Signature Rendering With GraphicImage RemovedCustom Signature Rendering With GraphicImage Added

Code Block
languagexml
themeEclipse
<SignatureRenderingLayouts>
    <Colors>
        <Color id="black" a="255" r="0" g="0" b="0" />
        <Color id="blue" a="255" r="64" g="64" b="255" />
        <Color id="transparent" a="0" r="255" g="255" b="255" />
    </Colors>
    <Fonts>
        <Font id="Arial" family="Arial" size="10pt" bold="0" italic="0" underline="0" color="black" />
        <Font id="Arial 8" family="Arial" size="8pt" bold="0" italic="0" underline="0" color="black" />
        <Font id="Arial bold" family="Arial" size="10pt" bold="1" italic="0" underline="0" color="black" />
        <Font id="Arial transp" family="Arial" size="10pt" bold="0" italic="0" underline="0" color="transparent" />
        <Font id="Segoe Script" family="Segoe Script" size="10pt" bold="0" italic="0" underline="0" color="black" />
        <Font id="Segoe Script 16blue" family="Segoe Script" size="16pt" bold="0" italic="0" underline="0" color="blue" />        
    </Fonts>
    <Layouts>
        <Layout id="default" defaultFor="Click2Sign;Draw2Sign;Type2Sign" backgroundColor="white">
            <ExternalImageLayer />
            <Layer>
                <Row>
                    <Image height="150pt" hAlign="right"></Image>
                </Row>
            </Layer>
            <Layer>
                <Row cellWidthMode="auto">
                    <Text font="Arial transp">__</Text> <!-- a transparent placeholder to move image to the right... -->
                    <Signatory font="Segoe Script 16blue" />
                </Row>
                <Row>
                    <Text font="Arial transp">__</Text>
                    <TranslatedTextWithColon key="lbl_stamp_email" font="Arial bold" />
                    <Email font="Arial" />
                </Row>
                <Row>
                    <Text font="Arial transp">__</Text>
                    <TranslatedTextWithColon key="lbl_stamp_datetime" font="Arial bold" />
                    <DateTime format="dd-MM-yyyy HH:mm:ss (zzz)" font="Arial" />
                </Row>
                <Row>
                    <Text font="Arial transp">__</Text>
                    <TranslatedTextWithColon key="lbl_stamp_ipAddress" font="Arial bold" />
                    <IpAddress font="Arial" />
                </Row>
                <Row>
                    <Text font="Arial transp">_______________</Text>
                    <Text font="Arial 8">Electronically signed with eSignAnyWhere</Text>
                </Row>
            </Layer> 
        </Layout>
    </Layouts>
</SignatureRenderingLayouts>

...