0

Luracast Restlerを使用して画像を返すことは可能ですか?電話のようなもの:

http://myserver.com/api/users/002/avatar

pngをダウンロードするには?

4

1 に答える 1

2

Restlerで画像を提供することが可能です。

APIメソッドで次のことを行う必要があります

  • 適切な画像タイプ(png、jpegなど)のコンテンツタイプヘッダーを設定します

    header("Content-Type: image/png");
    
  • 画像コンテンツをエコーする

    $im = imagecreatefrompng("test.png");
    
    header('Content-Type: image/png');
    
    imagepng($im); //this sends the image as the response
    imagedestroy($im);
    
  • 通常の戻り結果の代わりに、exitまたはdieを使用して実行を停止します

于 2013-02-12T10:52:16.437 に答える