Signature"

From Documentation
 
(15 intermediate revisions by 5 users not shown)
Line 2: Line 2:
  
 
= Signature =
 
= Signature =
[ since 8.6.0 ]
+
{{versionSince| 8.6.0}}
*Java API: <javadoc>org.zkoss.zkmax.wgt.Signature</javadoc>
+
{{ZK EE}}
*JavaScript API: <javadoc directory="jsdoc">org.zkoss.zkmax.wgt.Signature</javadoc>
 
  
{{ZK EE}}
+
*Java API: <javadoc>org.zkoss.zkmax.zul.Signature</javadoc>
 +
*JavaScript API: <javadoc directory="jsdoc">zkmax.wgt.Signature</javadoc>
  
 
= Browser Support =
 
= Browser Support =
*For IE, this component only supports 10+.
+
*This component supports IE10+ and modern browsers.
  
 
= Employment/Purpose =
 
= Employment/Purpose =
Signature components supports signature pad on the desktop and mobile browsers. User can customize pen size, pen color, background color etc., it also provides undo, save and clear methods.
+
Signature components support signature pad on the desktop and mobile browsers. User can customize pen size, pen color, background color etc., it also provides undo, save and clear methods.
  
 
= Example =
 
= Example =
Line 21: Line 21:
 
</source>
 
</source>
  
= Methods =
+
== Buttons ==
  
The following are some methods to control the Signature:
+
There are 3 buttons when you hover on this component: (from left to right)
  
1. undo: to remove the last step that was drawn on the signature pad.
+
# '''undo''': to remove the last step that was drawn on the signature pad.
 +
# '''save''': to save the signature image to the server, a user can get the image by listening onSave event.
 +
# '''clear''': to clear signature pad.
  
2. save: to save the signature image to the server, user can get the image by listening onSave event.
+
= toolbarVisible =
  
3. clear: to clear signature pad.
+
The toolbar contains 3 buttons: undo button, clear button, and save button. They are visible by default. If you can hide them:
  
= Toolbar =
+
<source lang="xml">
 
 
The toolbar contain three buttons: undo button, clear button and save button, it is enabled by default. If you don't want to show the toolbar, please use the following setting to hide it.
 
 
 
<source language="xml">
 
 
<signature toolbarVisible="false"/>
 
<signature toolbarVisible="false"/>
 
</source>
 
</source>
  
The toolbar button only contains icon by default. If you want to show message after icons on the button, we provide three attributes: undoLabel, clearLabel, saveLabel.
+
The toolbar buttons only contain icons by default. If you want to show message after icons on the buttons, we provide three attributes: <code>undoLabel</code>, <code>clearLabel</code>, and <code>saveLabel</code>.
  
 
Default:
 
Default:
Line 48: Line 46:
  
 
[[File:Signature toolbar2.png]]
 
[[File:Signature toolbar2.png]]
<source language="xml">
+
<source lang="xml">
 
<signature undoLabel="Undo" clearLabel="Clear" saveLabel="Save"/>
 
<signature undoLabel="Undo" clearLabel="Clear" saveLabel="Save"/>
 
</source>
 
</source>
  
= Style =
+
= Style Attributes =
  
 
There are some attributes to adjust the signature style:
 
There are some attributes to adjust the signature style:
  
1. penSize, the width of a line on signature, defaults to 1.
+
== penSize==
 +
the width of a line on the signature, the default is 1.
  
2. penColor, can be any color format accepted by context.fillStyle(canvas), defaults to black.
+
== penColor ==
 +
Can be any color format accepted by context.fillStyle(canvas), defaults to black.
  
3. backgroundColor, can be any color format accepted by context.fillStyle(canvas), defaults to white.
+
== backgroundColor==
 +
Can be any color format accepted by context.fillStyle(canvas), defaults to white.
  
= Upload =
+
== backgroundImage==
 +
{{versionSince| 9.6.0}}
 +
Can be any image format accepted by context.drawImage(canvas), defaults to null.
  
After calling save method, the signature will be uploaded to server. You can listen onSave to get the uploaded image and integrate with [https://www.zkoss.org/wiki/ZK_Component_Reference/Essential_Components/Image Image].
+
= BackgroundIncluded =
 +
{{versionSince |9.6.0}}
  
For example:
+
The background color and image will be saved by default.  If you don't want to save the background color and image, please use the following setting.
 +
<source lang="xml">
 +
<signature backgroundIncluded="false"/>
 +
</source>
  
<source language="xml">
+
== Scanned Paper Form==
 +
You can load a scanned paper form as a background and save it with a signature.
 +
[[File:Paper-form.jpg|center]]
 +
 
 +
= Saves Signature Image =
 +
 
 +
After clicking "Save" button, the component will upload the signature to a server. You can listen <code>onSave</code> to get the uploaded signature and show it with [https://www.zkoss.org/wiki/ZK_Component_Reference/Essential_Components/Image Image]:
 +
 
 +
<source lang="xml">
 
<signature onSave="image.setContent(event.getMedia())"/>
 
<signature onSave="image.setContent(event.getMedia())"/>
 
<image id="image"/>
 
<image id="image"/>
 
</source>
 
</source>
 +
 +
== File Size Limit ==
 +
If you see <code>SizeLimitExceededException</code>, you can adjust max uploading file size by
 +
[[ZK_Configuration_Reference/zk.xml/The_system-config_Element/The_max-upload-size_Element | file-size-threshold]].
  
 
=Supported Events=
 
=Supported Events=
  
{| border="1" | width="100%"
+
{| class='wikitable' | width="100%"
 
! <center>Name</center>
 
! <center>Name</center>
 
! <center>Event Type</center>
 
! <center>Event Type</center>
Line 90: Line 109:
 
=Version History=
 
=Version History=
 
{{LastUpdated}}
 
{{LastUpdated}}
{| border='1px' | width="100%"
+
{| class='wikitable' | width="100%"
 
! Version !! Date !! Content
 
! Version !! Date !! Content
 
|-
 
|-

Latest revision as of 10:15, 19 September 2022

Signature

Since 8.6.0

  • Available for ZK:
  • http://www.zkoss.org/product/zkhttp://www.zkoss.org/whyzk/zkeeVersion ee.png

Browser Support

  • This component supports IE10+ and modern browsers.

Employment/Purpose

Signature components support signature pad on the desktop and mobile browsers. User can customize pen size, pen color, background color etc., it also provides undo, save and clear methods.

Example

Signature.png

<signature width="600px" height="300px" penColor="white" backgroundColor="#AED6F1" penSize="6"/>

Buttons

There are 3 buttons when you hover on this component: (from left to right)

  1. undo: to remove the last step that was drawn on the signature pad.
  2. save: to save the signature image to the server, a user can get the image by listening onSave event.
  3. clear: to clear signature pad.

toolbarVisible

The toolbar contains 3 buttons: undo button, clear button, and save button. They are visible by default. If you can hide them:

<signature toolbarVisible="false"/>

The toolbar buttons only contain icons by default. If you want to show message after icons on the buttons, we provide three attributes: undoLabel, clearLabel, and saveLabel.

Default:

Signature toolbar.png

Customized:

Signature toolbar2.png

<signature undoLabel="Undo" clearLabel="Clear" saveLabel="Save"/>

Style Attributes

There are some attributes to adjust the signature style:

penSize

the width of a line on the signature, the default is 1.

penColor

Can be any color format accepted by context.fillStyle(canvas), defaults to black.

backgroundColor

Can be any color format accepted by context.fillStyle(canvas), defaults to white.

backgroundImage

Since 9.6.0 Can be any image format accepted by context.drawImage(canvas), defaults to null.

BackgroundIncluded

Since 9.6.0

The background color and image will be saved by default. If you don't want to save the background color and image, please use the following setting.

<signature backgroundIncluded="false"/>

Scanned Paper Form

You can load a scanned paper form as a background and save it with a signature.

Paper-form.jpg

Saves Signature Image

After clicking "Save" button, the component will upload the signature to a server. You can listen onSave to get the uploaded signature and show it with Image:

	<signature onSave="image.setContent(event.getMedia())"/>
	<image id="image"/>

File Size Limit

If you see SizeLimitExceededException, you can adjust max uploading file size by file-size-threshold.

Supported Events

Name
Event Type
onSave
Event: UploadEvent

When user invoke the save method, the event would be triggered.

onClear
Event: Event

When user invoke the clear method, the event would be triggered.

Version History

Last Update : 2022/09/19


Version Date Content
8.6.0 August 2018



Last Update : 2022/09/19

Copyright © Potix Corporation. This article is licensed under GNU Free Documentation License.