php 将url网络图片的压缩,使用 base64 进行转码存储、base64转图片压缩在转base64
整体思路先讲一下,把网络图片下载到本地,然后进行压缩,在进行base64位转码。首先1://下载图片保存到本地publicstaticfunctioncurl_file_get_contents($url,$path){$hander=curl_init();$fp=fopen($path,'wb');curl_setopt($hander,CURLOPT_URL,$url);curl_setop