1

I am echoing TSV data and turning it into an excel file via header()

This works fine, but 1 of the columns needs to be an image. How can I embed the image as one of the columns?

Thanks!

JD Isaacks
  • 56,088
  • 93
  • 276
  • 422

2 Answers2

2

Well, put simply, you can't. A TSV is a plain text (text/plain) file, not an 'Excel file'. An excel file is a binary representation of a spreadsheet, and although Excel can read a TSV and present it as tabular data, it's not this advanced binary form which can contain images.

You would have to create a 'proper' Excel xls file using one of the available libraries. I've used PHPExcel in the past and I think it supports adding images.

David Snabel-Caunt
  • 57,804
  • 13
  • 114
  • 132
1

I don't believe there is anyway to use TSV data, and get Excel to display an image.

However, I have had success in using Spreadsheet_Excel_Writer from PEAR, and it supports inserting images (bitmaps). Also supports nice formatting, etc, etc.

Lance Rushing
  • 7,540
  • 4
  • 29
  • 34