douluo5937 2013-02-07 05:35
浏览 52
已采纳

使用PHPExcel使用Graph消除读取和写入excel文件

Hi I am using http://phpexcel.codeplex.com for read and write of excel file. I have graph in excel file when i read it and write new data graph disapear. This the example no 7 i.e 07reader.php but change include file from "05featuredemon.php" to "33chartcreate-bar.php" because i need graph

error_reporting(E_ALL);
ini_set('display_errors', TRUE);
ini_set('display_startup_errors', TRUE);

define('EOL',(PHP_SAPI == 'cli') ? PHP_EOL : '<br />');

date_default_timezone_set('Europe/London');

/** Include PHPExcel_IOFactory */
require_once '../Classes/PHPExcel/IOFactory.php';


if (!file_exists("33chartcreate-bar.xlsx")) {
exit("Please run 33chartcreate-bar.php first." . EOL);
}

echo date('H:i:s') , " Load from Excel2007 file" , EOL;
$objPHPExcel = PHPExcel_IOFactory::load("05featuredemo.xlsx");

 echo date('H:i:s') , " Write to Excel2007 format" , EOL;
$objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel2007');
$objWriter->save(str_replace('.php', '.xlsx', __FILE__));
echo date('H:i:s') , " File written to " , str_replace('.php', '.xlsx',   pathinfo(__FILE__, PATHINFO_BASENAME)) , EOL;


// Echo memory peak usage
 echo date('H:i:s') , " Peak memory usage: " , (memory_get_peak_usage(true) / 1024 / 1024) , " MB" , EOL;

// Echo done
echo date('H:i:s') , " Done writing file" , EOL;
 echo 'File has been created in ' , getcwd() , EOL;

please help me

  • 写回答

1条回答 默认 最新

  • doupo6967 2013-02-07 07:26
    关注

    You need to explicitly tell PHPExcel to read and to write charts

    $objReader->setIncludeCharts(TRUE);
    

    and

    $objWriter->setIncludeCharts(TRUE);
    

    as shown in the examples

    EDIT

    Explicit spoonfeeding type example

    //  Create a reader for an Excel2007 file
    $objReader = PHPExcel_IOFactory::createReader('Excel2007');
    //  Tell the reader to include charts when it loads a file
    $objReader->setIncludeCharts(TRUE);
    //  Load the file
    $objPHPExcel = $objReader->load("33chartcreate-bar.xlsx");
    
    
    //  Do some stuff to the file
    
    
    //  Create a writer for an Excel2007 file
    $objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel2007');
    //  Tell the writer to include any charts when it saves a file
    $objWriter->setIncludeCharts(TRUE);
    //  Save the file
    $objWriter->save(str_replace('.php', '.xlsx', __FILE__));
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 linux驱动,linux应用,多线程
  • ¥20 我要一个分身加定位两个功能的安卓app
  • ¥15 基于FOC驱动器,如何实现卡丁车下坡无阻力的遛坡的效果
  • ¥15 IAR程序莫名变量多重定义
  • ¥15 (标签-UDP|关键词-client)
  • ¥15 关于库卡officelite无法与虚拟机通讯的问题
  • ¥15 目标检测项目无法读取视频
  • ¥15 GEO datasets中基因芯片数据仅仅提供了normalized signal如何进行差异分析
  • ¥100 求采集电商背景音乐的方法
  • ¥15 数学建模竞赛求指导帮助