Method ReadSignatureImage
ReadSignatureImage(Int32, Int32, String)
Similar to ReadSignatureImage(Int32, Int32, out Bitmap). Saves the signature image to a file.
Declaration
public Error ReadSignatureImage(int width, int height, string savePath)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | width | The width of the image. |
System.Int32 | height | The height of the image. |
System.String | savePath | The file to save to. |
Returns
Type | Description |
---|---|
Error | Error |
Implements
ReadSignatureImage(Int32, Int32, out Bitmap)
Yields the drawn signature image. The way the the image is resized can be changed with ReadSignatureImageOptions
Declaration
public Error ReadSignatureImage(int width, int height, out Bitmap bitmap)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | width | Desired width of the image. |
System.Int32 | height | Desired height of the image. |
System.Drawing.Bitmap | bitmap | The bitmap. Null in case of error. |
Returns
Type | Description |
---|---|
Error | Error |
Implements
ReadSignatureImage(Int32, Int32, out Byte[])
Declaration
public Error ReadSignatureImage(int width, int height, out byte[] image)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | width | |
System.Int32 | height | |
System.Byte[] | image |
Returns
Type | Description |
---|---|
Error |
ReadSignatureImage(out Bitmap)
Yields the drawn signature image.
Declaration
public Error ReadSignatureImage(out Bitmap bitmap)
Parameters
Type | Name | Description |
---|---|---|
System.Drawing.Bitmap | bitmap | The bitmap. Null in case of error. |
Returns
Type | Description |
---|---|
Error | Error |