Hello! I'm on an app that I'm developing, I need to place a button that takes info from the app and places it into a PDF. The flow works well but, now I'm trying to send a Image to the PDF too, but when I open the PDF, the image appears with a Red X. Any help?
This is my Flow:
This is my HTML control content:
"<!doctype html>
<html lang='en'>
<head>
<meta charset='utf-8'>
<meta name='viewport' content='width=device-width, initial-scale=1'>
</head>
<body style='margin: 10px 10px 10px 10px; font-family: Verdana, Geneva, Tahoma, sans-serif;'>
<div style='width:100%;height: auto; background-color: rgb(16,6,159); color:white; text-align: center; font-weight: bold'>
Polopiqué - Modelos e Operações
</div>
<table>
<tr>
<th style='padding-left: 18px; font-weight: bold; text-align:center'><b>Modelo " & " " & varDetalhes.Cliente & " " & varDetalhes.Modelo & " " & varDetalhes.Designação & "
</th>
<th>
// Here is the problem.
<img src='https://www.polopique.pt/media/images/logotipo.jpg' alt='logotipo' width='120'>
</th>
</tr>
</table>
<br>
<center>
<table>
<tr style='background-color: rgb(199,199,199)'> <th> </th><th>Operação</th> <th>Máquina</th> <th>Tempo</th> <th>Prod/Hora</th></tr>
" & Concat(
colModOp;
"<tr style='text-align: center'>
<td style='width: 50px ; '> " & Ordem & " </td>
<td style='width: 200px; text-align:left'> " & LookUp(
Operações;
RefOperação.Value = Operação;
Descrição
) & " </td>
<td style='width: 100px'> " & LookUp(
Operações;
RefOperação.Value = Operação;
Máquinas.Value
) & " </td>
<td style='width: 80px'> " & Tempo & " </td>
<td style='width: 50px'> " &
With(
{
_min: Value(
Left(
Tempo;
2
)
) * 60 * 1000;
_sec: Value(
Mid(
Tempo;
4;
2
)
) * 1000;
_ms: Value(
Right(
Tempo;
3
)
)
};
RoundUp(
3600000 / (_min + _sec + _ms);
0
)
) & " </td></tr>"
) & "
</table>
</center>
<br>
<div style='width:100%; height: auto; background-color: rgb(16,6,159); color:white; text-align: center; font-weight: bold;'> " & Now() & " </div>
</body>
</html>"

Report
All responses (
Answers (