首页 > Web开发 > 详细

PHP将图片流存为图片文件

时间:2021-09-16 04:21:31      阅读:40      评论:0      收藏:0      [点我收藏+]
//网签生成图片
        if (empty($data[‘signature‘])) {
            return $result = [‘code‘ => 0, ‘msg‘ => ‘请签名后再提交!‘];
        }

        //将图片流写入图片文件
        $file_path = ROOT_PATH.‘public_html/uploads/signature‘;
        if (!file_exists($file_path)){
            mkdir($file_path);
        }
        $file_name = $this->c_user_id.‘.png‘;
        $file = $file_path . ‘/‘ . $file_name;
        if (file_exists($file)) {
            unlink($file);
        }

        $image = file_get_contents ( $data[‘signature‘]);
        if (@$fp = fopen ( $file, ‘w+‘ )) {
            fwrite ( $fp, $image );
            fclose ( $fp );
        }

 

PHP将图片流存为图片文件

原文:https://www.cnblogs.com/Strive-count/p/15270615.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!