当前位置:首页 > PHP教程 > php高级应用 > 列表

PHP读取Excel内的图片(phpspreadsheet和PHPExcel扩展库)

发布:smiling 来源: PHP粉丝网  添加日期:2022-01-23 13:18:32 浏览: 评论:0 

今天接到了一个从Excel内读取图片的需求,在网上查找了一些资料,基本实现了自己的需求,不过由于查到的一些代码比较久远,不能直接移植到自己的项目里,需要稍加改动一下。

这里介绍一下分别使用phpspreadsheet和PHPExcel扩展库来实现读取Excel内图片的功能:

PHPSpreadsheet

首先安装phpspreadsheet,由于线上服务器PHP版本是PHP5.6,所以需要安装兼容PHP5.6的版本,这里安装1.8.2版本

composer require phpoffice/phpspreadsheet=1.8.2

然后就可以在项目里使用了

  1. use PhpOffice\PhpSpreadsheet\Cell\Coordinate; 
  2. use PhpOffice\PhpSpreadsheet\IOFactory; 
  3. $imageFilePath = './uploads/imgs/'//图片本地存储的路径 
  4. if (!file_exists($imageFilePath)) { //如果目录不存在则递归创建 
  5.  mkdir($imageFilePath, 0777, true); 
  6. try { 
  7.  $inputFileName = './files/1.xlsx'//包含图片的Excel文件 
  8.  $objRead = IOFactory::createReader('Xlsx'); 
  9.  $objSpreadsheet = $objRead->load($inputFileName); 
  10.  $objWorksheet = $objSpreadsheet->getSheet(0); 
  11.  $data = $objWorksheet->toArray(); 
  12.  foreach ($objWorksheet->getDrawingCollection() as $drawing) { 
  13.   list($startColumn$startRow) = Coordinate::coordinateFromString($drawing->getCoordinates()); 
  14.   $imageFileName = $drawing->getCoordinates() . mt_rand(1000, 9999); 
  15.   switch ($drawing->getExtension()) { 
  16.    case 'jpg'
  17.    case 'jpeg'
  18.     $imageFileName .= '.jpg'
  19.     $source = imagecreatefromjpeg($drawing->getPath()); 
  20.     imagejpeg($source$imageFilePath . $imageFileName); 
  21.     break
  22.    case 'gif'
  23.     $imageFileName .= '.gif'
  24.     $source = imagecreatefromgif($drawing->getPath()); 
  25.     imagegif($source$imageFilePath . $imageFileName); 
  26.     break
  27.    case 'png'
  28.     $imageFileName .= '.png'
  29.     $source = imagecreatefrompng($drawing->getPath()); 
  30.     imagepng($source$imageFilePath$imageFileName); 
  31.     break
  32.   } 
  33.   $startColumn = ABC2decimal($startColumn); 
  34.   $data[$startRow-1][$startColumn] = $imageFilePath . $imageFileName
  35.  } 
  36.  dump($data);die(); 
  37. } catch (\Exception $e) { 
  38.  throw $e
  39. public function ABC2decimal($abc
  40.  $ten = 0; 
  41.  $len = strlen($abc); 
  42.  for($i=1;$i<=$len;$i++){ 
  43.   $char = substr($abc,0-$i,1);//反向获取单个字符 
  44.   $int = ord($char); 
  45.   $ten += ($int-65)*pow(26,$i-1); 
  46.  } 
  47.  return $ten

可以看到,图片被读取并存到了本地服务器中

PHPExcel

PHPExcel实现从Excel文件里读取内容的方法和phpspreadsheet几乎一样,毕竟phpspreadsheet就是在PHPExcel基础上写的,不过PHPExcel由于已经被废弃了,所以建议优先使用phpspreadsheet,如果原来项目里一直使用了PHPExcel也可以继续使用PHPExcel的方法

  1. use PHPExcel_IOFactory; 
  2. use PHPExcel_Cell; 
  3. try { 
  4.  $inputFileName = './files/1.xlsx'
  5.  $inputFileType = PHPExcel_IOFactory::identify($inputFileName); 
  6.  $objReader = PHPExcel_IOFactory::createReader($inputFileType); 
  7.  $objPHPExcel = $objReader->load($inputFileName); 
  8. } catch (\Exception $e) { 
  9.  die('加载文件发生错误:"'.pathinfo($inputFileName,PATHINFO_BASENAME).'": '.$e->getMessage()); 
  10. $sheet = $objPHPExcel->getSheet(0); 
  11. $data = $sheet->toArray(); //该方法读取不到图片,图片需单独处理 
  12. $imageFilePath = './uploads/imgs/'//图片本地存储的路径 
  13. if (!file_exists($imageFilePath)) { 
  14.  mkdir($imageFilePath, 0777, true); 
  15. //处理图片 
  16. foreach ($sheet->getDrawingCollection() as $img) { 
  17.  list($startColumn$startRow) = PHPExcel_Cell::coordinateFromString($img->getCoordinates()); //获取图片所在行和列 
  18.  $imageFileName = $img->getCoordinates() . mt_rand(1000, 9999); 
  19.  switch($img->getExtension()) { 
  20.   case 'jpg'
  21.   case 'jpeg'
  22.    $imageFileName .= '.jpeg'
  23.    $source = imagecreatefromjpeg($img->getPath()); 
  24.    imagejpeg($source$imageFilePath.$imageFileName); 
  25.    break
  26.   case 'gif'
  27.    $imageFileName .= '.gif'
  28.    $source = imagecreatefromgif($img->getPath()); 
  29.    imagejpeg($source$imageFilePath.$imageFileName); 
  30.    break
  31.   case 'png'
  32.    $imageFileName .= '.png'
  33.    $source = imagecreatefrompng($img->getPath()); 
  34.    imagejpeg($source$imageFilePath.$imageFileName); 
  35.    break
  36.  } 
  37.  $startColumn = ABC2decimal($startColumn); 
  38.  $data[$startRow-1][$startColumn] = $imageFilePath . $imageFileName
  39. var_dump($data); 
  40. public function ABC2decimal($abc
  41.  $ten = 0; 
  42.  $len = strlen($abc); 
  43.  for($i=1;$i<=$len;$i++){ 
  44.   $char = substr($abc,0-$i,1);//反向获取单个字符 
  45.   $int = ord($char); 
  46.   $ten += ($int-65)*pow(26,$i-1); 
  47.  } 
  48.  return $ten
  49. }

Tags: PHP读取Excel图片 phpspreadsheet

分享到: