0.0.6 • Published 1 year ago

@e-signature/ng-signature-pad v0.0.6

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

AngularCanvas

This easy-to-use package is designed to simplify the integration of digital signatures into your Angular applications. Whether you need to enhance the security of your forms, documents, or transactions, our package has got you covered.

Install

npm i @e-signature/ng-signature-pad

Quick Code Example

<lib-sign-pad (onSaveImage)="getData($event)"></lib-sign-pad>

Usage Example

//In Module.ts

....
import { AngularCanvasModule } from '@e-signature/ng-signature-pad';
...

@NgModule({
  imports: [
    AngularCanvasModule
  ]
})
export class AppModule { }
//In HTML File

<lib-sign-pad (onSaveImage)="getData($event)"></lib-sign-pad>

//Implement if you want to customize Signature Pad Size

<lib-sign-pad [hgt]="200" [wdt]="400" (onSaveImage)="getData($event)"></lib-sign-pad>
//In component.ts

getData(event : any){
    // Event contains base64 of image
}
0.0.6

1 year ago

0.0.5

2 years ago

0.0.4

2 years ago

0.0.3

2 years ago

0.0.2

2 years ago

0.0.1

2 years ago