小新的笔记 只要一息尚存,一个人就不应当放下期望。——佚名
博主 小新的笔记
粤ICP备2024299964号博主 2024年10月28日 在线自豪地使用 Typecho 建站搭配使用 🌻Sunny 主题当前在线 33 人
歌曲封面 未知作品

粤ICP备2024299964号

网站已运行 1 年 101 天 17 小时 5 分

Powered by Typecho & Sunny

34 online · 84 ms

Title

PHP获取excel表格里面的图片

小新

·

·

469次阅读
PHP
Article
⚠️ 本文最后更新于2024年08月14日,已经过了473天没有更新,若内容或图片失效,请留言反馈

先安装插件包

♾️ text 代码:
composer require phpoffice/phpspreadsheet

获取excel中的图片并保存(我用的是TP5.1)

♾️ text 代码:
//加载打开文件 $file
$reader = \PhpOffice\PhpSpreadsheet\IOFactory::createReader('Xlsx');
//这一行不要写,写了这个是获取不到图片这些数据的
//$reader->setReadDataOnly(TRUE);
$spreadsheet = $reader->load($file);
$objWorksheet = $spreadsheet->getSheet(0);
$data = $objWorksheet->toArray();

//遍历
foreach ($objWorksheet->getDrawingCollection() as $drawing) {
    list($startColumn, $startRow) = Coordinate::coordinateFromString($drawing->getCoordinates());
    $imageFileName = $drawing->getCoordinates() . mt_rand(1000, 9999);

    switch ($drawing->getExtension()) {
        case 'jpg':
        case 'jpeg':
            //加了时间戳是为了不让文件名重复
            $imageFileName .= '_'.time().'.jpg';
            $source = imagecreatefromjpeg($drawing->getPath());
            imagejpeg($source, $imageFilePath . $imageFileName);
            break;
        case 'gif':
            $imageFileName .= '_'.time().'.gif';
            $source = imagecreatefromgif($drawing->getPath());
            imagegif($source, $imageFilePath . $imageFileName);
            break;
        case 'png':
            $imageFileName .= '_'.time().'.png';
            $source = imagecreatefrompng($drawing->getPath());
            imagepng($source, $imageFilePath. $imageFileName);
            break;
    }
    $startColumn = ABC2decimal($startColumn);
    //把保存成链接的文件放回拿到的数据中
    $data[$startRow-1][$startColumn] = $this->request->domain() . $path . $imageFileName;
}

ABC2decimal方法

♾️ text 代码:
function ABC2decimal($abc)
{
    $ten = 0;
    $len = strlen($abc);
    for($i=1;$i<=$len;$i++){
        $char = substr($abc,0-$i,1);//反向获取单个字符

        $int = ord($char);
        $ten += ($int-65)*pow(26,$i-1);
    }
    return $ten;
}
现在已有 0 条评论,0 人点赞

广告

页底广告 页底广告
Comment:共0条
发表
搜 索 消 息 足 迹
你还不曾留言过..
你还不曾留下足迹..
博主 不再显示
博主