从图像创建函数的PHP卷曲上传

时间:2012-10-09 18:00:03

标签: php image post curl multipart

如何使用curl通过图像创建功能上传图像(imgpng,imagecreatefromstring,..)

这就是我目前正常使用没有创建功能的方式

curl_setopt($ch, CURLOPT_POST, true);
$post = array(
  "Filedata"=>"@{$file_location}"
);
curl_setopt($ch, CURLOPT_POSTFIELDS, $post);

如何用图像功能做同样的事情,让我们说imagecreatefromstring(file_get_contents($image_link));
并直接通过函数将其与curl 链接,而不必保存文件

2 个答案:

答案 0 :(得分:0)

$data = curl_exec($ch);
imageceratefromstring($data);

答案 1 :(得分:0)

这是how。请注意,在代码中,您可以避免任何包含,只需使用它:

$postFields['my_image'] = someFunctionForCreatingImage();