溫馨提示×

溫馨提示×

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

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

php將jpg轉(zhuǎn)png的方法

發(fā)布時間:2020-08-24 09:38:49 來源:億速云 閱讀:281 作者:小新 欄目:編程語言

這篇文章主要介紹了php將jpg轉(zhuǎn)png的方法,具有一定借鑒價值,需要的朋友可以參考下。希望大家閱讀完這篇文章后大有收獲。下面讓小編帶著大家一起了解一下。

php將jpg轉(zhuǎn)png的實現(xiàn)方法:首先創(chuàng)建一個PHP示例文件;然后通過“transform_image”方法將jpg格式的文件轉(zhuǎn)換為png即可。

php將jpg轉(zhuǎn)png的方法

PHP簡單實現(xiàn)圖片格式轉(zhuǎn)換(jpg轉(zhuǎn)png,gif轉(zhuǎn)png等)

需求

開發(fā)過程中總會遇到一些需求需要對圖片格式進行轉(zhuǎn)換。比如 gif轉(zhuǎn)png,jpg轉(zhuǎn)png

如最近使用某平臺的圖片文件識別,居然不支持gif格式,那么就需要將gif處理成png等。

依賴

php擴展 gd 和 exif

實現(xiàn)

/**
 * 圖片格式轉(zhuǎn)換
 * @param string $image_path 文件路徑或url
 * @param string $to_ext 待轉(zhuǎn)格式,支持png,gif,jpeg,wbmp,webp,xbm
 * @param null|string $save_path 存儲路徑,null則返回二進制內(nèi)容,string則返回true|false
 * @return boolean|string $save_path是null則返回二進制內(nèi)容,是string則返回true|false
 * @throws Exception 
 * @author klinson <klinson@163.com>
 */
function transform_image($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');
    }
  }
}

使用

// 轉(zhuǎn)換后保存在test.png
transform_image($url, 'png', './test.png');
transform_image($filepath, 'png', './test.png');
// 轉(zhuǎn)換后二進制結(jié)果直接返回
transform_image($url, 'png');
transform_image($filepath, 'png');

感謝你能夠認真閱讀完這篇文章,希望小編分享php將jpg轉(zhuǎn)png的方法內(nèi)容對大家有幫助,同時也希望大家多多支持億速云,關注億速云行業(yè)資訊頻道,遇到問題就找億速云,詳細的解決方法等著你來學習!

向AI問一下細節(jié)

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

php
AI