您好,登錄后才能下訂單哦!
本篇內容主要講解“php image類型如何實現轉換”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“php image類型如何實現轉換”吧!
php image類型實現轉換的方法:1、創建一個PHP示例文件;2、通過“function image_change($image_path, $to_ext = 'png',$save_path=null){...}”方法實現轉換即可。
本文操作環境: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類型如何實現轉換”有了更深的了解,不妨來實際操作一番吧!這里是億速云網站,更多相關內容可以進入相關頻道進行查詢,關注我們,繼續學習!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。