0

fsockopenPHPで外部サーバーから画像を取得しようとしています。コードで BASE64 エンコーディングの変数に画像データを取得する必要があります。画像は .jpeg ファイル形式で、小さい画像です。

いくつか検索しても、Googleで答えが見つかりませんでした。だから、奇妙な回避策がなくても直接可能かどうか疑問に思いますか?

どんな助けや提案も大歓迎です!

allow_url_fopenセキュリティ上の脅威により、私のサーバーでは無効になっていることに注意してください。

これは私の現在のコードです:

$wn_server = "111.111.111.111";

$url = "GET /webnative/portalDI?action=getimage&filetype=small&path=".$tmp." HTTP/1.1\r\n";

$fp = fsockopen($wn_server,80,$errno,$errstr,15);
stream_set_timeout($fp, 30);

$imageDataStream = "";

if (!$fp) {
    echo "Error " . $errno . "(" . $errstr . ")";
} else {
    $out = $url;
    $out .= "Host: " . $wn_server . "\r\n";
    $out .= "Authorization: Basic " . $_SESSION['USER'] . "\r\n";
    $out .= "Connection: Close\r\n\r\n";
    $out .= "\r\n";
    fwrite($fp, $out);
    while (!feof($fp)) {
        $imageDataStream .= fgets($fp, 128);
    }
    fclose($fp);
}
4

2 に答える 2

0

次のような意味ですか。

$ch = curl_init();

// Authentication
curl_setopt($ch, CURLOPT_HTTPAUTH, CURLAUTH_BASIC); 
curl_setopt($ch, CURLOPT_USERPWD, 'username:password'); 

// Fetch content as binary data
curl_setopt($ch, CURLOPT_URL, $urlToImage);
curl_setopt($ch, CURLOPT_BINARYTRANSFER, 1);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);

// Fetch image data
$imageData = curl_exec($ch);

curl_close($ch);

// Encode returned data with base64
echo base64_encode($imageData);
于 2013-11-07T11:45:11.023 に答える
0

以下を試してください

header('Content-Type: image/png');
echo $imageData;
于 2014-06-10T19:47:19.387 に答える