本文主要是介绍PhpSpreadsheet 读取 excel 里面的图片,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
使用 phpSpreadSheet 插件去读取 excel 里面的图片时发现坑点很多,这里做一个总结
我使用的是 tp 框架
一、安装 phpSpreadSheet 插件
在composer.json配置
"require": {..."phpoffice/phpspreadsheet": "*"
}
composer安装
composer require phpoffice/phpspreadsheet
二、读取图片的函数
这里会把excel里面的图片读取,然后存放到服务器指定的目录
use PhpOffice\PhpSpreadsheet\IOFactory;
use PhpOffice\PhpSpreadsheet\Cell\Coordinate;// 获取excel表格的图片
public function main(){$imageFilePath = ROOT_PATH . 'public/uploads/images/'; //图片本地存储的路径if (!file_exists($imageFilePath)) { //如果目录不存在则递归创建mkdir($imageFilePath, 0777, true);}try {$file = ROOT_PATH . 'public/excel/2.xlsx';; //包含图片的Excel文件$objRead = IOFactory::createReader('Xlsx');$objSpreadsheet = $objRead->load($file);$objWorksheet = $objSpreadsheet->getSheet(0);$data = $objWorksheet->toArray();foreach ($objWorksheet->getDrawingCollection() as $drawing) {list($startColumn, $startRow) = Coordinate::coordinateFromString($drawing->getCoordinates());$imageFileName = $drawing->getCoordinates() . mt_rand(1000, 9999);switch ($drawing->getExtension()) {case 'jpg':case 'jpeg':$imageFileName .= '.jpg';$source = imagecreatefromjpeg($drawing->getPath());imagejpeg($source, $imageFilePath . $imageFileName);break;case 'gif':$imageFileName .= '.gif';$source = imagecreatefromgif($drawing->getPath());imagegif($source, $imageFilePath . $imageFileName);break;case 'png':$imageFileName .= '.png';$source = imagecreatefrompng($drawing->getPath());imagepng($source, $imageFilePath . $imageFileName);break;}$data[$startRow-1][$startColumn] = '/uploads/images/' . $imageFileName;}dump($data);die();} catch (\Exception $e) {throw $e;}
}
三、遇到的其他坑总结
1)解析excel遇到报错:Could not find zip member zip://文件路径.xis#_rels/.rels
解决方案:不要使用.xls格式的excel,使用.xlsx
2)使用wps上传图片时,如果是使用“嵌入到单元格”的方式上传,要在图片的右键,将图片转为浮动图片,才可以被插件解析到,因为wps会将嵌入到单元格用特殊的函数去处理:
=DISPIMG("ID_8BCFD5BECC7D4876A66B679A8D9EAC49",1)
3) 使用 CURLFile 上传图片时,如果发现 $_FILES获取不到文件,有可能是 curl 的请求头参数,不要设置成 json格式
if ($method == "post") {curl_setopt($ch, CURLOPT_POST, true);curl_setopt($ch, CURLOPT_POSTFIELDS, $post_string);//@下面这里,不要设置成json的请求头,应该屏蔽if ($header) {curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-Type: application/json; charset=utf-8 ','Content-Length: ' . strlen($post_string)));}
}
4)excel上传之后,获取不到excel文件,有可能是 php.ini 里面的 upload_max_filesize 比较小,然后excel里面的图片比较大,导致整个文件上传的时候,超过这个限制
这篇关于PhpSpreadsheet 读取 excel 里面的图片的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!