zoukankan      html  css  js  c++  java
  • phpexcel图片获取

    phpexcel图片获取常见的两种方式:

    require_once dirname(__FILE__) . '/../Jn/PHPExcel.php';
    $filePath = "123.xls";
    
    $inputFileType = PHPExcel_IOFactory::identify($filePath);
    $objReader = PHPExcel_IOFactory::createReader($inputFileType);
    $objPHPExcel = $objReader->load("templates/123.xls");
    $worksheet = $objPHPExcel->getSheet(0);        //**读取excel文件中的指定工作表*/
    
    
    foreach ($worksheet->getDrawingCollection() as $drawing) {
    	$xy=$drawing->getCoordinates();//得到单元数据 比如G2单元
        $path = "pic/";
    	if ($drawing instanceof PHPExcel_Worksheet_Drawing) {//支持excel2007后缀为(.xlsx)
    		$filename = $drawing->getPath();
    
    		//第一种直接拷贝
    		//copy($filename, $path.$codata.'_'.$imageFileNames);
    		
    		//第二种另存图片流
    		$imgData=file_get_contents($filename);
    		$imageFileName = $drawing->getIndexedFilename();
    		//$ImgExt = strchr($imageFileName,'.');
    		file_put_contents($path.$codata.'_'.$imageFileNames,$imageContents); //把文件保存到本地
    
        }elseif($drawing instanceof PHPExcel_Worksheet_MemoryDrawing) {//支持excel2003后缀为(.xls)
    		$imageFileNames = $drawing->getIndexedFilename();
    		//$ImgExt = strchr($imageFileNames,'.');
    		ob_start();
    		call_user_func(
    			$drawing->getRenderingFunction(),
    			$drawing->getImageResource()
    		);
    		$imageContents = ob_get_contents();
    		ob_end_clean();
    		echo strlen($imageContents);
    
    		file_put_contents($path.$codata.'_'.$imageFileNames,$imageContents); //把文件保存到本地
    		
    	
    	}
    
    }
    
  • 相关阅读:
    安装node.js webkit环境[一]
    wpf 窗口最小化后,触发某事件弹出最小化窗口并置顶
    c# 旋转图片 无GDI+一般性错误
    类库里面添加日志记录 log4net
    string转xml
    DES c#加密后java解密
    使用排序字典排序
    怎么让一段xml被识别为字符串
    新装iis 页面503错误 DefaultAppPool停止解决方案
    hession
  • 原文地址:https://www.cnblogs.com/liucysun/p/13398039.html
Copyright © 2011-2022 走看看