$content = file_get_contents("file:///Users//s.jpg");
$content = base64_encode($content);然后进行网络传输,对方就能处理数据。
七牛中的直接调用api即可实现:
$key = $invite.‘.png‘;
header(‘Content-Type: ‘.$qrCode->getContentType()); ???//资源类型
$content = $qrCode->writeString(); ??????????????????????????????????//数据流形式传递
Yii::$app->Qiniu->manageQiniu($key,$content,‘‘,‘uploadbinary‘);
php中图片以字节流的形式直接发送七牛
原文地址:https://blog.51cto.com/13238147/2355512