Skip to content

Latest commit

 

History

History
40 lines (37 loc) · 906 Bytes

SignConfiguration.md

File metadata and controls

40 lines (37 loc) · 906 Bytes

An example config :

[
    {
    email: '[email protected]',
        signature: {
            rect: {
                x: 0.65,
                y: 0.85,
                width: 0.3,
                height: 0.1,
                color: 'purple'
            },
            color: 'black'
        },
        page: 1
    },
    {
        email: '[email protected]',
        signature: {
            rect: {
                x: 0.25,
                y: 0.85,
                width: 0.3,
                height: 0.1,
                color: 'red'
            },
            color: 'black'
        },
        page: 1
    }
]

or stringified

[{"email":"[email protected]","signature":{"rect":{"x":0.65,"y":0.85,"width":0.3,"height":0.1,"color":"purple"},"color":"black"},"page":1},{"email":"[email protected]","signature":{"rect":{"x":0.25,"y":0.85,"width":0.3,"height":0.1,"color":"red"},"color":"black"},"page":1}]