>  기사  >  백엔드 개발  >  PHP에서 이미지를 base64 인코딩으로 변환하는 방법

PHP에서 이미지를 base64 인코딩으로 변환하는 방법

藏色散人
藏色散人원래의
2020-08-19 10:12:035180검색

base64 인코딩으로 PHP 변환을 구현하는 방법: 먼저 이미지 파일을 얻은 다음 "base64EncodeImage" 메서드를 통해 지정된 이미지 파일을 base64 형식 인코딩으로 변환합니다.

PHP에서 이미지를 base64 인코딩으로 변환하는 방법

권장: "PHP 비디오 튜토리얼"

PHP는 이미지를 base64 인코딩으로 변환하고 base64 이미지를 이미지로 변환하고 코드를 저장합니다

One: 이미지를 base64 인코딩으로 변환

/*图片转换为 base64格式编码*/
$img = 'uploads/01.png';
$base64_img = base64EncodeImage($img);
echo &#39;<img src="&#39; . $base64_img . &#39;" />&#39;;
 
function base64EncodeImage ($image_file) {
    $base64_image = &#39;&#39;;
    $image_info = getimagesize($image_file);
    $image_data = fread(fopen($image_file, &#39;r&#39;), filesize($image_file));
    $base64_image = &#39;data:&#39; . $image_info[&#39;mime&#39;] . &#39;;base64,&#39; . chunk_split(base64_encode($image_data));
    return $base64_image;
}

Two: base64 이미지를 이미지를 저장하고

/*  base64格式编码转换为图片并保存对应文件夹 */
function base64_image_content($base64_image_content,$path){
    //匹配出图片的格式
    if (preg_match(&#39;/^(data:\s*image\/(\w+);base64,)/&#39;, $base64_image_content, $result)){
        $type = $result[2];
        $new_file = $path."/".date(&#39;Ymd&#39;,time())."/";
        if(!file_exists($new_file)){
            //检查是否有该文件夹,如果没有就创建,并给予最高权限
            mkdir($new_file, 0700);
        }
        $new_file = $new_file.time().".{$type}";
        if (file_put_contents($new_file, base64_decode(str_replace($result[1], &#39;&#39;, $base64_image_content)))){
            return &#39;/&#39;.$new_file;
        }else{
            return false;
        }
    }else{
        return false;
    }
}
 
echo base64_image_content($base64_img,"uploads/");

위 내용은 PHP에서 이미지를 base64 인코딩으로 변환하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.