91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

php image類型如何實現轉換

發布時間:2021-12-27 11:02:30 來源:億速云 閱讀:127 作者:iii 欄目:編程語言

本篇內容主要講解“php image類型如何實現轉換”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“php image類型如何實現轉換”吧!

php image類型實現轉換的方法:1、創建一個PHP示例文件;2、通過“function image_change($image_path, $to_ext = 'png',$save_path=null){...}”方法實現轉換即可。

php image類型如何實現轉換

本文操作環境:Windows7系統,PHP7.1版,Dell G3電腦。

php image類型怎么實現轉換?

php圖片格式轉換方法

/**
 * 圖片格式轉換
 * @param string $image_path 文件路徑或url
 * @param string $to_ext 待轉格式,支持png,gif,jpeg,wbmp,webp,xbm
 * @param null|string $save_path 存儲路徑,null則返回二進制內容,string則返回true|false
 * @return boolean|string $save_path是null則返回二進制內容,是string則返回true|false
 * @throws Exception
 */
function image_change($image_path, $to_ext = 'png', $save_path = null)
{
    if (!in_array($to_ext, ['png', 'gif', 'jpeg', 'wbmp', 'webp', 'xbm'])) {
        throw new \Exception('unsupport transform image to ' . $to_ext);
    }
    switch (exif_imagetype($image_path)) {
        case IMAGETYPE_GIF :
            $img = imagecreatefromgif($image_path);
            break;
        case IMAGETYPE_JPEG :
        case IMAGETYPE_JPEG2000:
            $img = imagecreatefromjpeg($image_path);
            break;
        case IMAGETYPE_PNG:
            $img = imagecreatefrompng($image_path);
            break;
        case IMAGETYPE_BMP:
        case IMAGETYPE_WBMP:
            $img = imagecreatefromwbmp($image_path);
            break;
        case IMAGETYPE_XBM:
            $img = imagecreatefromxbm($image_path);
            break;
        case IMAGETYPE_WEBP: //(從 PHP 7.1.0 開始支持)
            $img = imagecreatefromwebp($image_path);
            break;
        default :
            throw new \Exception('Invalid image type');
    }
    $function = 'image' . $to_ext;
    if ($save_path) {
        return $function($img, $save_path);
    } else {
        $tmp = __DIR__ . '/' . uniqid() . '.' . $to_ext;
        if ($function($img, $tmp)) {
            $content = file_get_contents($tmp);
            unlink($tmp);
            return $content;
        } else {
            unlink($tmp);
            throw new \Exception('the file ' . $tmp . ' can not write');
        }
    }
}

到此,相信大家對“php image類型如何實現轉換”有了更深的了解,不妨來實際操作一番吧!這里是億速云網站,更多相關內容可以進入相關頻道進行查詢,關注我們,繼續學習!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

时尚| 志丹县| 永清县| 新晃| 龙里县| 宣威市| 玛纳斯县| 龙州县| 中牟县| 搜索| 千阳县| 永顺县| 铜鼓县| 侯马市| 三台县| 汾阳市| 克东县| 揭东县| 合阳县| 阜新| 双鸭山市| 济阳县| 洞口县| 伽师县| 荔波县| 乐都县| 定结县| 陇川县| 万山特区| 阳西县| 镇远县| 延安市| 海南省| 乐陵市| 长岭县| 宿州市| 芷江| 海宁市| 香格里拉县| 梨树县| 望谟县|