php 將圖片轉成base64
阿新 • • 發佈:2018-05-21
function gif php pos 內置 獲取 str 路徑 files
PHP對Base64的支持非常好,有內置的base64_encode與base64_decode負責圖片的Base64編碼與解碼。
編碼上,只要將圖片流讀取到,而後使用base64_encode進行進行編碼即可得到。
/** * 獲取圖片的Base64編碼(不支持url) * @date 2017-02-20 19:41:22 * * @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); // 取得圖片的大小,類型等 //echo ‘<pre>‘ . print_r($img_info, true) . ‘</pre><br>‘; $fp = fopen($app_img_file, "r"); // 圖片是否可讀權限 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 } //調用使用的方法 $img_dir = dirname(__FILE__) . ‘/uploads/img/11213223.jpg‘; $img_base64 = imgToBase64($img_dir); echo ‘<img src="‘ . $img_base64 . ‘">‘; //圖片形式展示 echo ‘<hr>‘; echo $img_base64; //輸出Base64編碼
而解碼就略微麻煩一點,究其原因在於把圖片編碼成base64字符串後,編碼內會加入這些字符 data:image/png;base64,本來是用於base64進行識別的。但是如果直接放到php裏用base64_decode函數解碼會導致最終保存的圖片文件格式損壞,而解決方法就是先去掉這一串字符:
$base64_string= explode(‘,‘, $base64_string); //截取data:image/png;base64, 這個逗號後的字符 $data= base64_decode($base64_string[1]); //對截取後的字符使用base64_decode進行解碼 file_put_contents($url, $data); //寫入文件並保存
轉:https://www.cnblogs.com/cloudshadow/p/php_img_to_base64.html
https://www.cnblogs.com/byuc/p/7600451.html
php 將圖片轉成base64