Hi Community,
Does anyone have an example flow to merge two images uploaded in a Microsoft Forms question into a single PDF?.
Thank you very much¡
Hi Community,
Does anyone have an example flow to merge two images uploaded in a Microsoft Forms question into a single PDF?.
Thank you very much¡
No, they are not displayed either. When I convert the file to JPG they are displayed, but only one file is displayed, it does not allow me to put them together.
Thanks
Are the images appearing when the html file is viewed?
Hi,
I try first to create an html file, but when converting it to pdf the images are not passed correct.
My flow.
Regards,
Hey ,You can create an HTML file first using the images being uploaded.
<style>
table { width: 600px; background-color: #FFFFFF; color: #000000; border-color: #CCCCCC; border-collapse: collapse; }
th, td { width: 300px; }
</style>
<table border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td>Employee's Name:</td>
<td>@{outputs('Get_response_details')?['body/r4439fa8a972149d7a914e9d70017ce16']}</td>
</tr>
<tr>
<td>Department/Craft Group</td>
<td>@{outputs('Get_response_details')?['body/r73892b4ca8e94071bdd8613fda02c8be']}</td>
</tr>
<tr>
<td>Image</td>
<td><img src="data:image/png;base64,@{outputs('Get_response_details')?['body/r73892b4ca8e94071bdd8613fda02c8be']}" alt="SomeImage" /></td>
</tr>
</tbody>
</table>
You can then convert the HTML file to PDF using the Onedrive - Convert to PDF action