php合并jpg-php数组去重的 ***

php合并jpg

png与jpg图片必须是Photoshop导出web原图php合并jpg,且不能用第三软件或web压缩php合并jpg,否则会出错。

<?php

$dir = __DIR__ . '/seomuyun.com/';

imgtype($dir);

function imgtype($dir)

{

$dir = rtrim($dir, '/') . '/';

$hd = opendir($dir);

while ($hf = readdir($hd)) {

if ($hf == '.' || $hf == '..') {

continue;

}

turnType($dir.$hf);

}

}

function turnType($file)

{

if (is_file($file)) {

$ext = pathinfo($file, PATHINFO_EXTENSION);;

if ($ext == 'jpeg' || $ext == 'jpg' || $ext == 'png') {

$newpic = rtrim($file, $ext) . 'webp';

if ($ext == 'jpg') {

$ext = 'jpeg';

}

$funName = 'imagecreatefrom' . $ext;

$hImg = $funName($file);

imagewebp($hImg, $newpic);

imagedestroy($hImg);

}

}

}

发布于 2024-09-02 13:09:42
收藏
分享
海报
0 条评论
56
目录

    0 条评论

    本站已关闭游客评论,请登录或者注册后再评论吧~