php gd库处理base64图片

方法:(实例)

if (preg_match('/^(data:image\/(\w+);base64,)/', $picture, $result)) {
    $type    = $result[2];
    $newFile = 'uploads/'. time() . '.' . $type;

    if (file_put_contents($newFile, base64_decode(str_ireplace($result[1], '', $picture)))) {
          $img   = imagecreatefromjpeg($newFile);    //由文件创建新图象。
          $w     = imagesx($img);
          $h     = imagesy($img);
          $iImg  = imagecreatetruecolor($waterW,$waterH);   //新建真彩色图像
          $white = imagecolorallocate($iImg, 255,255, 255);
          imagefill($iImg, 0, 0, $white);
          imagecopyresampled($iImg,$img,0,0,0,0, $waterW, $waterH, $w, $h);//重采样拷贝部分图像并调整大小
          imagejpeg($iImg, $newFile);   //输出图象到文件
          imagedestroy($iImg);  //销毁图像
    }
    
}

$pictrue 为base64格式的图片地址,运用gd库处理base64格式图片,将其替换成正常的图片地址(****.jpg)

  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值