Now I want to implement a functionality to add QR code image at the first page of an existing docx file in nodejs.
I've tried these three methods but not able to solve.
- I tried with docx package, but it only allows to build docx file from scratch.
- I tried with docxtemplater, but it only allows to replace
{%image}into image file. - I tried to generate a new docx file that contains qr code image only and merge it with original docx file. But could not find any suitable package for docx merge.
Is there any solution here? Thanks in advance.