Hi
in a Word template I have ${replace_with_image}.
I then try to replace the image like this:
$image = "data:image/png;base64,...."; // all data is not included here.
$docx->replacePlaceholderImage('replace_with_image', $image);
then I convert the docx to html but the image is not shown.
other text variables is replaced in the template correctly
Any hints ?