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
@Francisco77