(PECL xlswriter >= 1.2.1)
Vtiful\Kernel\Excel::insertImage — Vtiful\Kernel\Excel 插入图像
将本地图像插入单元格。
row
单元格行
column
单元格列
localImagePath
本地图像路径
示例 #1 示例
<?php
$config = [
'path' => './tests'
];
$excel = new \Vtiful\Kernel\Excel($config);
$file = $excel->fileName("free.xlsx");
$file->insertImage(5, 0, '/vagrant/ASW-G-66.jpg');
$file->output();