webfactorymk/ng2-canvas-whiteboard

How can i increase drawing pencil size

Closed this issue · 2 comments

How can i increase drawing pencil size

You can send the lineWidth as input. Currently only pixels are supported.

The change was added in version 1.3.4 so please update the package to this version if it's smaller than the required version

Example:

<canvas-whiteboard #canvasWhiteboard
                   [lineWidth]="100"
                   (onBatchUpdate)="onCanvasDraw($event)"
                   (onClear)="onCanvasClear()"
                   (onUndo)="onCanvasUndo($event)"
                   (onRedo)="onCanvasRedo($event)">
</canvas-whiteboard>

screen shot 2017-11-24 at 1 02 16 pm

ok sir done Thank you...