ngImgCrop用php获取src

时间:2015-10-17 15:51:39

标签: php angularjs

使用php获取裁剪img src(使用ngImgCrop制作)的更好方法是什么?

它给了我一个base64 img ..

图像是这样的:

<img ng-src="data:image/png;base64;................"/>

我尝试过这样的事情:

function base64_to_jpeg($base64_string, $output_file) {

    $ifp = fopen($output_file, "wb"); 

    $data = explode(',', $base64_string);

    fwrite($ifp, base64_decode($data[1])); 
    fclose($ifp); 

    return $output_file; 

}

1 个答案:

答案 0 :(得分:0)

您需要删除前导&#34;数据:image / png; base64,&#34;在对表示新图像的字符串执行base64_decode之前