Hi there, I'm admitting right off the bat this is only marginally related to php though I'll be using php's base64 encoding if I can make this work somehow.
MS Excel has the ability to embed images. HTML pages also have the ability to embed images such as this example:
<table>
<tr>
<td>base64-encoded image to right:</td>
<td>
<img src="data:image/gif;base64,R0lGODlhDwAPAKECAAAAzMzM/////wAAACwAAAAADwAPAAACIISPeQHsrZ5ModrLlN48CXF8m2iQ3YmmKqVlRtW4MLwWACH+H09wdGltaXplZCBieSBVbGVhZCBTbWFydFNhdmVyIQAAOw=="alt="Base64 encoded image" width="150" height="150"/>
</td>
</tr>
</table>
However, MS Excel will not read or show that image, though it will show a "blank" image marker that is 150x150.
Is there any type of file format that has embedded images (i.e. all data in one file), which can be exported from a browser, which Excel could read or treat as it's own type? My client would love to see an excel spreadsheet with embedded images.
Thanks,
Samuel