I have a spreadsheet that I would like to import using PHP. I can import the cell data using PHPExcel, but can\'t figure out how to use images from within the spreadsheet.<
You can do the following :
$im = {excel data} header("Content-type: image/jpeg"); // or whatever $image = imagejpeg($im, NULL, 100);