Luracast Restlerを使用して画像を返すことは可能ですか?電話のようなもの:
http://myserver.com/api/users/002/avatar
pngをダウンロードするには?
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を使用して実行を停止します