Works perfectly on mobile and desktop devices.
Install & download the Signature Pad.
# Yarn $ yarn add signature_pad # NPM $ npm install signature_pad --save
Import the UMD version of the Signature Pad library into the document.
<script src="dist/signature_pad.umd.js"></script>
Create a canvas element for the signature pad.
<canvas></canvas>
Initialize the signature pad and define a background for the signature pad. It’s Necessary to use an opaque color when saving image as JPEG. This option can be omitted if only saving as PNG or SVG.
var canvas = document.querySelector("canvas");
var signaturePad = new SignaturePad(canvas, {
backgroundColor: 'rgb(255, 255, 255)'
}); Save the signature as PNG/JPG/SVG images.
// PNG
signaturePad.toDataURL();
// JPG
signaturePad.toDataURL("image/jpeg");
// SVG
signaturePad.toDataURL("image/svg+xml"); Draw a signature image from a data URL.
signaturePad.fromDataURL("data:image/png;base64,..."); More API methods.
// returns an array of point groups
const data = signaturePad.toData();
// draws a signature image from an array of point groups
// with or without clearing your existing image
signaturePad.fromData(data, { clear: false });
// Return svg string without converting to base64
signaturePad.toSVG(); // "<svg...</svg>"
signaturePad.toSVG({includeBackgroundColor: true}); // add background color to svg output
// clears the signature
signaturePad.clear();
// returns true if canvas is empty
signaturePad.isEmpty();
// binds/unbinds event handlers
signaturePad.on();
signaturePad.off(); Full options to customize the signature pad.
var signaturePad = new SignaturePad(canvas, {
// min/max line width
minWidth: 0.5,
maxWidth: 2.5,
// weight used to modify new velocity based on the previous velocity
velocityFilterWeight: 0.7,
// HTML canvas options
canvasContextOptions: {},
// draw the next point at most once per every x milliseconds
throttle: 16,
// background color
backgroundColor: 'rgba(0,0,0,0)',
// min distance
minDistance: 5,
// dot size
dotSize: 2,
// line color
penColor: 'black'
}); Event handlers.
const signaturePad = new SignaturePad(canvas);
signaturePad.addEventListener("beginStroke", () => {
// do something
}, { once: true });
signaturePad.addEventListener("endStroke", () => {
// do something
});
signaturePad.addEventListener("beforeUpdateStroke", () => {
// do something
});
signaturePad.addEventListener("afterUpdateStroke", () => {
// do something
}); v5.0.8 (06/05/2025)
v5.0.7 (03/19/2025)
v5.0.6 (03/14/2025)
v5.0.5 (03/13/2024)
v5.0.4 (10/17/2024)
v5.0.3 (08/23/2024)
v5.0.2 (06/10/2024)
v5.0.1 (05/18/2024)
v5.0.0 (05/03/2024)
v4.2.0 (03/10/2023)
v4.1.7 (11/16/2023)
v4.1.6 (07/16/2023)
v4.1.5 (02/21/2023)
v4.1.4 (11/08/2022)
v4.1.3 (10/31/2022)
v4.1.0 (10/30/2022)
v4.0.10 (10/12/2022)
v4.0.9 (09/24/2022)
v4.0.8 (09/13/2022)
v4.0.7 (07/22/2022)
v4.0.6 (07/18/2022)
v4.0.5 (06/06/2022)
v4.0.4 (04/04/2022)
v4.0.3 (03/18/2022)
v4.0.2 (01/22/2022)
v4.0.1 (01/08/2022)
v4.0.0 (11/24/2021)
v3.0.0 beta 4 (01/05/2021)
The post Smooth Signature Drawing On Canvas – Signature Pad appeared first on CSS Script.
Don't pay full price for your AirPods from the Apple Store. For a limited time,…
INDIANAPOLIS, Ind. (WOWO) — Indiana Governor Mike Braun announced on Monday that he has signed…
FORT WAYNE, Ind. (WOWO) — The Indiana Department of Natural Resources (DNR) has confirmed three…
ICE agents search the passenger of a truck as they arrest both him and the…
Residents in Stateline communities are being warned about potential scams targeting disaster recovery efforts
Residents in Stateline communities are being warned about potential scams targeting disaster recovery efforts
This website uses cookies.