zoukankan      html  css  js  c++  java
  • Writing Images to the Excel Sheet using PHPExcel--转载

    原文地址:http://www.walkswithme.net/writing-images-to-the-excel-sheet-using-phpexcel

    Writing images to the excel sheet using phpexcel class is a great feature , using this method we can draw the images inside the excel column it looks good and nice to have images with some descriptions.

    While working on an Import/Export system I have noticed this facility of PHPExcel its really good and easy, Ok lets check the code for writing images to the excel sheet using PHPExcel.

    
    include 'PHPExcel.php';
    // Create new PHPExcel object
    $objPHPExcel = new PHPExcel();
    // Set properties
    $objPHPExcel->getProperties()->setCreator("Jobin Jose");
    $objPHPExcel->getProperties()->setLastModifiedBy("Jobin Jose");
    $objPHPExcel->getProperties()->setTitle("Office 2007 XLSX Test Document");
    $objPHPExcel->getProperties()->setSubject("Office 2007 XLSX Test Document");
    $objPHPExcel->getProperties()->setDescription("Test document for Office 2007 XLSX, generated using PHPExcel classes.");
    // Add some data
    // echo date('H:i:s') . " Add some data
    ";
    $objPHPExcel->setActiveSheetIndex(0);
    $objPHPExcel->getActiveSheet()->SetCellValue('A1', 'Hello');
    $objPHPExcel->getActiveSheet()->SetCellValue('B2', 'world!');
    //$objPHPExcel->getActiveSheet()->SetCellValue('C1', 'Hello');
    $objPHPExcel->getActiveSheet()->SetCellValue('D2', 'world!');
    $objPHPExcel->getActiveSheet()->setTitle('Simple');
    $gdImage = imagecreatefromjpeg('uploads/t12.jpg');
    // Add a drawing to the worksheetecho date('H:i:s') . " Add a drawing to the worksheet
    ";
    $objDrawing = new PHPExcel_Worksheet_MemoryDrawing();
    $objDrawing->setName('Sample image');
    $objDrawing->setDescription('Sample image');
    $objDrawing->setImageResource($gdImage);
    $objDrawing->setRenderingFunction(PHPExcel_Worksheet_MemoryDrawing::RENDERING_JPEG);
    $objDrawing->setMimeType(PHPExcel_Worksheet_MemoryDrawing::MIMETYPE_DEFAULT);
    $objDrawing->setHeight(150);
    $objDrawing->setCoordinates('C1');
    $objDrawing->setWorksheet($objPHPExcel->getActiveSheet());
    $objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel2007');
    $objWriter->save(str_replace('.php', '.xlsx', __FILE__));
    // Echo done
    echo date('H:i:s') . " Done writing file.
    ";
    

    The out put will be like as follows.

    Writing Images to Excel Using PHPExcel

    Writing Images to Excel Using PHPExcel

    The above code will create an “xlsx” formatted file because it uses 2007 excel classes If you want “xls” format just try with 2005 class do not for get to change the file format to “xls” while using 2005.

  • 相关阅读:
    Asp.Net Core混合使用cookie和JwtBearer认证方案
    验证来自JWT的User.Identity
    asp.net core cookie和jwt简单的登录认证
    asp.net core 6.0 访问IConfiguration
    在 ASP.NET Core 中将依赖项注入到视图
    在 ASP.NET Core 上配置 DefaultScheme 和 DefaultChallengeScheme 有什么意义?混合身份认证问题
    WPF基础之路由事件五
    .NET framework 4.5新特性预览:核心语言 新增 功能和改进
    WPF基础之路由事件三
    Brush In WPF
  • 原文地址:https://www.cnblogs.com/davidwang456/p/4877166.html
Copyright © 2011-2022 走看看