void OnGetImageWatermark(inFilePath, inName)
Description
This callback function is called when there is a need to set a watermark on images captured during the interview
Parameters
The following is a list of parameters the functions receives
Parameter | Type | Description |
---|---|---|
inFilePath | string | the path of the attachment on the device |
inName | string | the name to set |
Return Type
void
Example
Set the question text as watermark on image
function OnGetImageWatermark(inFilePath, inName)
{
if (CurrQues > 0 ) {
return GetText(CurrQues);
}
else {
return "Unknown...";
}
}
Comments
Please sign in to leave a comment.