Method ReadSignatureImage
ReadSignatureImage(Int32, Int32, String)
Similar to
Declaration
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 |
Examples
See ReadSignatureImageOptions.
ReadSignatureImage(Int32, Int32, out Nullable<Bitmap>)
Yields the drawn signature image. The way the the image is resized can be changed with ReadSignatureImageOptions
Declaration
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.Nullable<Bitmap> | bitmap | The bitmap. Null in case of error. |
Returns
| Type | Description |
|---|---|
| Error | Error |