Jump to content
Fórum Script Brasil
  • 0

Exportar imagem para o excel


Andryon PHProgrammer

Question

Pessoal,

ao exportar um relatório com uma imagem, a imagem aparece quebrada, segue o código:

"<table>

<tr>

<td><img src='http://meusite/_interfaces/_clientes/f.jpg'/></td>

<td></td>

</tr>

</table>"

e seu deixar apenas:

"<table>

<tr>

<td><img src='_clientes/f.jpg'/></td>

<td></td>

</tr>

</table>"

também não aparece nada.

Para gravar o arquivo estou fazendo o seguinte:

// Crio o xls //

if (!$handle = fopen($filename, 'w+')) {

echo "Cannot open file ($filename)";

exit;

}

if (fwrite($handle, $conteudo) === FALSE) {

echo "Não foi possível escrever no arquivo ($filename)";

exit;

}

fclose($handle);

alguém sabe como resolver isso?

Link to comment
Share on other sites

1 answer to this question

Recommended Posts

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      652k
×
×
  • Create New...