I need help with embedding a captured signature into a pdf
any takers?
https://www.skin.com.au/services/referral-form-westmead?view=form
Not to worry, I sat down and realized I was just being lazy and worked it out... Thanks Bob for making my common sense.
If anyone else wants to know:
You first need to save the signature as a PNG. Put this in a PHP code action.
//$img: base64 encoded png
//$fileName: what you want the generated image to be called
function saveSignature($img, $fileName)
{
$img = str_replace('data:image/png;base64,', '', $img);
$img = str_replace(' ', '+', $img);
$data = base64_decode($img);
file_put_contents("path/to/the/{$fileName}", $data);
}
// Get the fileNameGenerator string to name the signature file with
saveSignature($this->data('signature field', ''), "what you want it called.png");