2013-02-10 187 views
0

是否可以使用Luracast Restler來返回圖像?像撥打電話:使用Restler返回圖像

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

要下載一個PNG?

回答

2

可以使用Restler爲圖像提供服務。

你需要做你的API方法如下

  • 設置內容類型標題爲右圖像類型(PNG,JPEG等)

    header("Content-Type: image/png"); 
    
  • 回聲圖像content

    示例

    $im = imagecreatefrompng("test.png"); 
    
    header('Content-Type: image/png'); 
    
    imagepng($im); //this sends the image as the response 
    imagedestroy($im); 
    
  • 使用退出或死亡,而不是阻止通常的返回結果

+0

這聽起來比我是進入一個更容易的執行:擴展格式類服務PNG圖片...謝謝 – Jelle 2013-02-12 18:49:41

+0

Imageloader http客戶端將Accept頭設置爲image/*,現在Restler抱怨「內容協商失敗。嘗試'application/json'「。我應該添加一個空MIME =」image/*「的ImageFormat類嗎?還是有更好的方法嗎? – Jelle 2013-02-28 15:19:34

+1

是的,你需要添加一個僞ImageFormat類 – Luracast 2013-03-01 03:34:13