2012-12-01 127 views
0

BMP圖像是在這裏:https://www.filepicker.io/api/file/fdsYv4NSaCGUefBAQmER圖片轉換失敗位圖圖像

和代碼重現故障:

 
var fpfile = { url: 'https://www.filepicker.io/api/file/fdsYv4NSaCGUefBAQmER', 
    filename: 'customers.jpg', mimetype: 'image/jpeg', isWriteable: false, size: 629454}; 
console.log("Converting..."); 
/*an element where we can display the resulting image*/ 
var result = document.getElementById("convert-result"); 
filepicker.convert(fpfile, {width: 200, height: 200}, 
    function(new_FPFile){ 
     console.log(new_FPFile.url); 
     result.src = new_FPFile.url; 
    } 
); 

不清楚是什麼我做錯了這裏,任何幫助將是非常讚賞。

感謝

回答

1

我們目前不支持的.bmp的轉換,但我們正處在加入它的過程。

+0

謝謝。有沒有什麼辦法可以從filepicker js中排除位圖,以便用戶不要上傳它們? – Spiros

+0

您可以在filepicker.pick()調用的選項中指定要允許的特定mimetypes或擴展名,或者您可以檢查返回的FPFile上的mimetype,並且其代碼流的行爲不同 – brettcvz

+0

**那麼爲什麼你不排除他們默認情況下?!?!** –