PhpSpreadsheet 读取 excel 里面的图片

时间:2024-03-25 15:13:17

使用 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里面的图片比较大,导致整个文件上传的时候,超过这个限制