Home Backend Development PHP Tutorial Solution to the problem that the color exported by phpexcel to excel is inconsistent with the color in the web page

Solution to the problem that the color exported by phpexcel to excel is inconsistent with the color in the web page

Jul 25, 2016 am 09:10 AM

  1. require_once './PHPExcel.php';
  2. require_once './Excel5.php';
  3. require_once './get_excel_row.php';
  4. require "../include/base.php ";
  5. require "../include/function/006/creatExcelDb.php";
  6. define("COLOR1","#96B7F6");
  7. //Check and process data------------ ---------------
  8. $q = $db->query("select * from oa_event_sales");
  9. while($a = $db->fetch_array($q)) {
  10. $list[] = $a;
  11. }
  12. $ce = new creatExcelDb();
  13. $re = $ce->_run($list,'served_time','client_status','oid');
  14. $ all_nums=0;
  15. $num=array();
  16. foreach($re as $k=>$v){
  17. $num[$k]=count($re[$k]);
  18. $all_nums+=count ($re[$k]);
  19. }
  20. $jq = array();
  21. $title1 = client_status;
  22. $title2 = fin_confirm;
  23. $title3 = oid;
  24. //Remove the same values ​​in the array
  25. foreach($ re as $key => $val){
  26. if(true){
  27. foreach($val as $key2 => $val2){
  28. if(!in_array($key2,$jq)){
  29. $jq[ ] = $key2;
  30. }
  31. }
  32. }
  33. }
  34. $arr_keys=array();
  35. foreach($re as $k=>$v){
  36. foreach($v as $k2=>$v2) {
  37. $arr_keys[]=$k2;
  38. }
  39. }
  40. $c=array_count_values($arr_keys);
  41. //++===---------------- ---------
  42. // Create a processing object instance
  43. $objExcel = new PHPExcel();
  44. // Create a file format writing object instance, uncomment
  45. $objWriter = new PHPExcel_Writer_Excel5($objExcel);
  46. //Set the basic properties of the document/**It seems that it is generally not used**/
  47. $objProps = $objExcel->getProperties();
  48. $objProps->setCreator("Yang Benmu");
  49. $objProps->setLastModifiedBy("Yang Benmu" ");
  50. $objProps->setTitle("杨本木");
  51. $objProps->setSubject("杨本木");
  52. $objProps->setDescription("杨本木");
  53. $objProps->setKeywords( "杨本木");
  54. $objProps->setCategory("杨本木");
  55. //***************************************
  56. //Set the current sheet index for subsequent content operations .
  57. //Generally, display calls are only needed when using multiple sheets.
  58. //By default, PHPExcel will automatically create the first sheet with SheetIndex=0
  59. $objExcel->setActiveSheetIndex(0);
  60. $objActSheet = $objExcel->getActiveSheet();
  61. //Set the current The name of the active sheet
  62. $objActSheet->setTitle('current sheetname');
  63. //Set the width. This value is different from that in EXCEL. I don’t know what the unit is. It is slightly smaller than the width in EXCEL
  64. //$objActSheet- >getColumnDimension('A')->setWidth(20);
  65. //$objActSheet->getRowDimension(1)->setRowHeight(30); //Height
  66. //Set the value of the cell
  67. $objActSheet ->setCellValue('A1', 'Total title display');
  68. /*
  69. //Set style
  70. $objStyleA1 = $objActSheet->getStyle('A1');
  71. $objStyleA1->getAlignment()- >setHorizontal(PHPExcel_Style_Alignment::HORIZONTAL_CENTER);
  72. $objFontA1 = $objStyleA1->getFont();
  73. $objFontA1->setName('宋体');
  74. $objFontA1->setSize(18);
  75. $objFontA 1 ->setBold(true);
  76. //Set column center alignment
  77. $objActSheet->getStyle('D')->getAlignment()->setHorizontal(PHPExcel_Style_Alignment::HORIZONTAL_CENTER);
  78. */
  79. //---------------first--- ------------------
  80. $benmu=1;
  81. $objActSheet->setCellValue('A1', 'row label column label');
  82. foreach($jq as $k=>$v){
  83. $objActSheet->setCellValue(get_excel_row($benmu).'1', $v);
  84. $benmu+=1;
  85. }
  86. $objActSheet->setCellValue(get_excel_row($ benmu).'1', 'Total');
  87. //Set the width
  88. for($i=0;$i<$benmu+1;$i++){
  89. $objActSheet->getColumnDimension(get_excel_row($i) )->setWidth(20);
  90. //Width
  91. $objActSheet->getStyle(get_excel_row($i)."1")->getAlignment()->setHorizontal(PHPExcel_Style_Alignment::HORIZONTAL_CENTER);
  92. $ objActSheet->getStyle(get_excel_row($i))->getAlignment()->setHorizontal(PHPExcel_Style_Alignment::HORIZONTAL_CENTER);
  93. //Color
  94. $objActSheet->getStyle(get_excel_row($i)."1" )->getFill()->setFillType(PHPExcel_Style_Fill::FILL_SOLID);
  95. $objActSheet->getStyle(get_excel_row($i)."1")->getFill()->getStartColor()-> ;setARGB(COLOR1);
  96. }
  97. //-------------content--------------------
  98. $y=2 ;
  99. foreach($re as $k1=>$v1){ //All $k1 is placed in A2. . . .Later, k1 is the phone number and v1 is the person-》number
  100. $objActSheet->setCellValue('A'.$y, $k1);
  101. //Color
  102. $objActSheet->getStyle('A'.$y )->getFill()->setFillType(PHPExcel_Style_Fill::FILL_SOLID);
  103. $objActSheet->getStyle('A'.$y)->getFill()->getStartColor()->setARGB( COLOR1);
  104. foreach($jq as $k2=>$v2){ //k2 is 0, v2 is person
  105. foreach($v1 as $k3=>$v3){ //$k3 is person,$ v3 is the desired value
  106. if($k3==$v2){
  107. //$objActSheet->setCellValue(get_excel_row("1"+$k2).$y,$v1[$k3]);
  108. $objActSheet ->setCellValueExplicit(get_excel_row("1"+$k2).$y,$v1[$k3],PHPExcel_Cell_DataType::TYPE_STRING);
  109. }
  110. }
  111. }
  112. $objActSheet->setCellValue(get_excel_row("1" +count($jq)).$y, $num[$k1]);
  113. $y+=1;
  114. }
  115. //-----------------last-- ----------------
  116. $objActSheet->setCellValue("A".$y,"Total");
  117. //Color
  118. $objActSheet->getStyle("A". $y)->getFill()->setFillType(PHPExcel_Style_Fill::FILL_SOLID);
  119. $objActSheet->getStyle("A".$y)->getFill()->getStartColor()-> setARGB(COLOR1);
  120. foreach($jq as $k=>$v){ //k is person
  121. $objActSheet->setCellValue(get_excel_row("1"+$k).$y,$c[$ v]);
  122. //Color
  123. $objActSheet->getStyle(get_excel_row("1"+$k).$y)->getFill()->setFillType(PHPExcel_Style_Fill::FILL_SOLID);
  124. $objActSheet- >getStyle(get_excel_row("1"+$k).$y)->getFill()->getStartColor()->setARGB(COLOR1);
  125. }
  126. $objActSheet->setCellValue(get_excel_row(" 1"+count($jq)).$y,$all_nums);
  127. //Color
  128. $objActSheet->getStyle(get_excel_row("1"+count($jq)).$y)->getFill( )->setFillType(PHPExcel_Style_Fill::FILL_SOLID);
  129. $objActSheet->getStyle(get_excel_row("1"+count($jq)).$y)->getFill()->getStartColor()-> ;setARGB(COLOR1);
  130. //----------------------------------
  131. //Output content
  132. $outputFileName =time().".xls";
  133. header("Pragma: public");
  134. header("Expires: 0");
  135. header("Cache-Control:must-revalidate, post-check=0, pre-check=0");
  136. header("Content-Type:application/force-download");
  137. header("Content-Type:application/octet-stream");
  138. header("Content-Type:application/ download");
  139. header('Content-Disposition:attachment;filename='.$outputFileName.'');
  140. header("Content-Transfer-Encoding:binary");
  141. $objWriter->save('php: //output');
  142. ?>
Copy the code

The above code, the color in define does not display the correct color in the exported excel. Start by defining a red color to see what is displayed, as follows: define(“COLOR1″,”#FF0000″); But the result shows that blue is defined to be displayed as a color similar to purple in excel, which is not the color displayed on the page anyway. Look at this code: $objActSheet->getStyle(‘A’.$y)->getFill()->getStartColor()->setARGB(COLOR1); Considering that it may be due to ARGB, try adding two digits of 00 in front of the color. The format may be like this argb(128,255,0,0). You can eliminate this problem first, because a is transparency. After testing, I found out that it is indeed increasing. 4-bit color fixation for transparency.



Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Working with Flash Session Data in Laravel Working with Flash Session Data in Laravel Mar 12, 2025 pm 05:08 PM

Laravel simplifies handling temporary session data using its intuitive flash methods. This is perfect for displaying brief messages, alerts, or notifications within your application. Data persists only for the subsequent request by default: $request-

cURL in PHP: How to Use the PHP cURL Extension in REST APIs cURL in PHP: How to Use the PHP cURL Extension in REST APIs Mar 14, 2025 am 11:42 AM

The PHP Client URL (cURL) extension is a powerful tool for developers, enabling seamless interaction with remote servers and REST APIs. By leveraging libcurl, a well-respected multi-protocol file transfer library, PHP cURL facilitates efficient execution of various network protocols, including HTTP, HTTPS, and FTP. This extension offers granular control over HTTP requests, supports multiple concurrent operations, and provides built-in security features.

Simplified HTTP Response Mocking in Laravel Tests Simplified HTTP Response Mocking in Laravel Tests Mar 12, 2025 pm 05:09 PM

Laravel provides concise HTTP response simulation syntax, simplifying HTTP interaction testing. This approach significantly reduces code redundancy while making your test simulation more intuitive. The basic implementation provides a variety of response type shortcuts: use Illuminate\Support\Facades\Http; Http::fake([ 'google.com' => 'Hello World', 'github.com' => ['foo' => 'bar'], 'forge.laravel.com' =>

12 Best PHP Chat Scripts on CodeCanyon 12 Best PHP Chat Scripts on CodeCanyon Mar 13, 2025 pm 12:08 PM

Do you want to provide real-time, instant solutions to your customers' most pressing problems? Live chat lets you have real-time conversations with customers and resolve their problems instantly. It allows you to provide faster service to your custom

PHP Logging: Best Practices for PHP Log Analysis PHP Logging: Best Practices for PHP Log Analysis Mar 10, 2025 pm 02:32 PM

PHP logging is essential for monitoring and debugging web applications, as well as capturing critical events, errors, and runtime behavior. It provides valuable insights into system performance, helps identify issues, and supports faster troubleshoot

Explain the concept of late static binding in PHP. Explain the concept of late static binding in PHP. Mar 21, 2025 pm 01:33 PM

Article discusses late static binding (LSB) in PHP, introduced in PHP 5.3, allowing runtime resolution of static method calls for more flexible inheritance.Main issue: LSB vs. traditional polymorphism; LSB's practical applications and potential perfo

Discover File Downloads in Laravel with Storage::download Discover File Downloads in Laravel with Storage::download Mar 06, 2025 am 02:22 AM

The Storage::download method of the Laravel framework provides a concise API for safely handling file downloads while managing abstractions of file storage. Here is an example of using Storage::download() in the example controller:

How to Register and Use Laravel Service Providers How to Register and Use Laravel Service Providers Mar 07, 2025 am 01:18 AM

Laravel's service container and service providers are fundamental to its architecture. This article explores service containers, details service provider creation, registration, and demonstrates practical usage with examples. We'll begin with an ove

See all articles