0.3.5 • Published 8 months ago

h5-signature v0.3.5

Weekly downloads
-
License
MIT
Repository
github
Last release
8 months ago

h5-signature

基于 canvas 的手写签名. online demo

Install

    npm install h5-signature
    # or
    yarn add h5-signature

    # development
    npm run start
    # build
    npm run build

Usage

<div style="width:300px;height:300px" id="container"></div>;
var container = document.getElementById("container");
new Signature.default({
  root: container, // root dom container
  color: "#000", // draw color
  lineWidth: 8, // draw line width
  width: "auto", // canvas width, auto fill to root width if set to 'auto'
  height: "auto", // canvas height, auto fill to root height if set to 'auto'
  openSmooth: true, // if enable brush thickness effect
  rotate: 0, // export rotated image, available values: -90/90/-180/180
  minWidth: 2, // minimize linWidth
  minSpeed: 1.5, // minimize brush move speed
  scaleRatio: window.devicePixelRatio, // canvas scale ratio
  maxWidth: null, // canvas element style max width
  maxWidthDiffRate: 20, // Smooth transition threshold
  resizeDebounceTime: 200, // window resize debounce elapse time
  maxHistoryLength: 0, // max history length, no limit if set to 0
  exportPadding: 0, // padding from edge
  exportMaxWidth: 300, // export max image width
  exportMaxHeight: 300, // export max image height
  undoRedoStateChange: Function, // state change callback if undo/redo state changed
  onDrawStart: Function, // called when draw starts, [MouseEvent, point]
  onDrawing: Function, // called when draw going , [MouseEvent, point]
  onDrawUp: Function, // called when draw up , [MouseEvent, Image]
});

instance methods

setLineWidth

parameters: width [number]

set draw lineWidth dynamic

setColor

parameters: color [string]

set draw color dynamic

setOptions

parameters: options Object

set override options, all properties same as constructor parameters, see above

clear

clear the canvas

undo

go prev draw stage

redo

go next draw stage

canUndo

query if can undo

canRedo

query if can redo

isEmpty

query if canvas is nothing drawed

getResult

parameters: origin [boolean]

get the cropped or origin canvas dom

destroy

destroy the instance

downloadFile

download the origin draw image

Thanks

smooth-signature

0.2.10

9 months ago

0.3.0

9 months ago

0.3.5

8 months ago

0.3.2

8 months ago

0.3.1

9 months ago

0.3.4

8 months ago

0.3.3

8 months ago

0.2.1

10 months ago

0.2.7

10 months ago

0.2.6

10 months ago

0.2.9

10 months ago

0.2.8

10 months ago

0.2.3

10 months ago

0.2.2

10 months ago

0.2.5

10 months ago

0.2.4

10 months ago

0.2.0

1 year ago

0.1.20

2 years ago

0.1.21

2 years ago

0.1.18

2 years ago

0.1.19

2 years ago

0.1.17

2 years ago

0.1.16

2 years ago

0.1.15

3 years ago

0.1.14

3 years ago

0.1.13

3 years ago

0.1.12

3 years ago

0.1.11

3 years ago

0.1.10

3 years ago

0.1.9

3 years ago

0.1.8

3 years ago

0.1.7

3 years ago

0.1.6

3 years ago

0.1.5

3 years ago

0.1.0

3 years ago