Thumbnails.php 581 B

1234567891011121314151617181920
  1. <?php
  2. /**
  3. * 重庆赤晓店信息科技有限公司
  4. * https://www.chixiaodian.com
  5. * Copyright (c) 2023 赤店商城 All rights reserved.
  6. */
  7. class PHPExcel_Writer_OpenDocument_Thumbnails extends PHPExcel_Writer_OpenDocument_WriterPart
  8. {
  9. /**
  10. * Write Thumbnails/thumbnail.png to PNG format
  11. *
  12. * @param PHPExcel $pPHPExcel
  13. * @return string XML Output
  14. * @throws PHPExcel_Writer_Exception
  15. */
  16. public function writeThumbnail(PHPExcel $pPHPExcel = null)
  17. {
  18. return '';
  19. }
  20. }