OnGetImageWatermark()

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..."; 
      } 
}

Was this article helpful?
0 out of 0 found this helpful
Have more questions? Submit a request

Comments

0 comments

Please sign in to leave a comment.