尝试制作匿名上传图片的脚本。我运行时只是空白页面。我需要发布带有标题和描述的图像(基本64字符串格式)。对不起,我的英文和代码。
<?
header ("Content-type: image/png");
$im = ImageCreate (200, 100);
$couleur_fond = ImageColorAllocate ($im, 255, 0, 0);
$client_id="d9514d92012b55a";
$pvars = base64_encode($im);
$timeout = 30;
$curl = curl_init();
curl_setopt($curl, CURLOPT_URL, 'https://api.imgur.com/3/image.json');
curl_setopt($curl, CURLOPT_TIMEOUT, $timeout);
curl_setopt($curl, CURLOPT_HTTPHEADER, array('Authorization: Client-ID ' . $client_id . ', title: title, description: description'));
curl_setopt($curl, CURLOPT_POST, 1);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($curl, CURLOPT_POSTFIELDS, $pvars);
$out = curl_exec($curl);
curl_close ($curl);
$pms = json_decode($out,true);
$url=$pms['data']['link'];
?>
答案 0 :(得分:0)
如果您尝试最后打印网址,则应删除header ("Content-type: image/png");
。
解释:header ("Content-type: image/png");
告诉浏览器将内容作为图像处理,而它是纯文本或HTML ...
您还应该使用完整的php标记<?php
而不是短标记<?
解释:有些服务器不解释以短php标签开头的php代码,并将代码作为纯文本发送给浏览器。