主頁 > 知識(shí)庫 > PHP保存Base64圖片base64_decode的問題整理

PHP保存Base64圖片base64_decode的問題整理

熱門標(biāo)簽:江西電銷機(jī)器人收費(fèi) 天潤融通外呼系統(tǒng)好嗎 江門回?fù)芡夂粝到y(tǒng) 欣思維地圖標(biāo)注 杭州語音電銷機(jī)器人 高德地圖標(biāo)注位置怎么標(biāo)注 高德地圖標(biāo)注店鋪收費(fèi)嗎 電銷機(jī)器人沒有效果怎么樣 泊頭在哪里辦理400電話

PHP對Base64的支持非常好,有內(nèi)置的base64_encode與base64_decode負(fù)責(zé)圖片的Base64編碼與解碼。

編碼上,只要將圖片流讀取到,而后使用base64_encode進(jìn)行進(jìn)行編碼即可得到。

/**
 * 獲取圖片的Base64編碼(不支持url) *
 * @param $img_file 傳入本地圖片地址 *
 * @return string
 */
function imgToBase64($img_file) {
  $img_base64 = '';
  if (file_exists($img_file)) {
    $app_img_file = $img_file; // 圖片路徑
    $img_info = getimagesize($app_img_file); // 取得圖片的大小,類型等
    $fp = fopen($app_img_file, "r"); // 圖片是否可讀權(quán)限
    if ($fp) {
      $filesize = filesize($app_img_file);
      $content = fread($fp, $filesize);
      $file_content = chunk_split(base64_encode($content)); // base64編碼
      switch ($img_info[2]) {      //判讀圖片類型
        case 1: $img_type = "gif";
          break;
        case 2: $img_type = "jpg";
          break;
        case 3: $img_type = "png";
          break;
      }
      $img_base64 = 'data:image/' . $img_type . ';base64,' . $file_content;//合成圖片的base64編碼
    }
    fclose($fp);
  }
  return $img_base64; //返回圖片的base64
}

//調(diào)用使用的方法

$img_dir = dirname(__FILE__) . '/uploads/img/wwllwedd.jpg';
$img_base64 = imgToBase64($img_dir);
echo 'img src="' . $img_base64 . '">'; //圖片形式展示
echo 'hr>';
echo $img_base64; //輸出Base64編碼

而解碼就略微麻煩一點(diǎn),究其原因在于把圖片編碼成base64字符串后,編碼內(nèi)會(huì)加入這些字符 data:image/png;base64,本來是用于base64進(jìn)行識(shí)別的。但是如果直接放到php里用base64_decode函數(shù)解碼會(huì)導(dǎo)致最終保存的圖片文件格式損壞,而解決方法就是先去掉這一串字符

//方法一
preg_match('/^(data:\s*image\/(\w+);base64,)/', $base_info, $result) // 可以判斷是否是 base64的圖片
$type = $result[2];
$extensions = strtolower($type);
if (!in_array($extensions, array('gif', 'jpg', 'png', 'jpeg','bmp'))) {
  json_rtn(0, '上傳的圖片不在允許內(nèi)');
}
$data= base64_decode(str_replace($result[1], '', $base_info));  //對截取后的字符使用base64_decode進(jìn)行解碼
file_put_contents($pic_path,$data) //寫入文件并保存
 
//方法二
$base64_string= explode(',', $base64_string); //截取data:image/png;base64, 這個(gè)逗號(hào)后的字符
$data= base64_decode($base64_string[1]);  //對截取后的字符使用base64_decode進(jìn)行解碼
file_put_contents($url, $data); //寫入文件并保存

以上就是本次介紹的關(guān)于PHP保存Base64圖片base64_decode的問題內(nèi)容,感謝大家的學(xué)習(xí)和對腳本之家的支持。

您可能感興趣的文章:
  • PHP實(shí)現(xiàn)本地圖片轉(zhuǎn)base64格式并上傳
  • php curl簡單采集圖片生成base64編碼(并附curl函數(shù)參數(shù)說明)
  • PHP實(shí)現(xiàn)將base64編碼字符串轉(zhuǎn)換成圖片示例
  • php讀取和保存base64編碼的圖片內(nèi)容
  • php實(shí)現(xiàn)base64圖片上傳方式實(shí)例代碼
  • php解析base64數(shù)據(jù)生成圖片的方法
  • php實(shí)現(xiàn)將base64格式圖片保存在指定目錄的方法
  • 利用PHP將圖片轉(zhuǎn)換成base64編碼的實(shí)現(xiàn)方法
  • php中base64_decode與base64_encode加密解密函數(shù)實(shí)例
  • PHP 實(shí)現(xiàn)base64編碼文件上傳出現(xiàn)問題詳解

標(biāo)簽:駐馬店 深圳 內(nèi)江 江門 雙鴨山 大同 石嘴山 巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《PHP保存Base64圖片base64_decode的問題整理》,本文關(guān)鍵詞  PHP,保存,Base64,圖片,base64,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。

  • 相關(guān)文章
  • 下面列出與本文章《PHP保存Base64圖片base64_decode的問題整理》相關(guān)的同類信息!
  • 本頁收集關(guān)于PHP保存Base64圖片base64_decode的問題整理的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章