EasyScriptRenderSignature Method |
This method will take a signature and will attempt to render it onto an Image object.
Namespace:
EasyScriptAPI
Assembly:
EasyScriptAPI (in EasyScriptAPI.dll) Version: 3.5.29.0 (3.5.29.0)
Syntax public Image RenderSignature(
Signature s,
Color foreColor,
Color backColor,
int lineThickness,
double scale
)
Public Function RenderSignature (
s As Signature,
foreColor As Color,
backColor As Color,
lineThickness As Integer,
scale As Double
) As Image
public:
Image^ RenderSignature(
Signature^ s,
Color foreColor,
Color backColor,
int lineThickness,
double scale
)
member RenderSignature :
s : Signature *
foreColor : Color *
backColor : Color *
lineThickness : int *
scale : float -> Image
Parameters
- s
- Type: EasyScriptAPISignature
Signature to render - foreColor
- Type: System.DrawingColor
Foreground color (signature color) to use. - backColor
- Type: System.DrawingColor
Background color - lineThickness
- Type: SystemInt32
The thickness of each stroke in pixels (not scaled) - scale
- Type: SystemDouble
How much to scale the resulting image.
Return Value
Type:
ImageImage containing the rendered signature
See Also