2016-03-17 62 views
1

照片我有科爾多瓦的應用程序,執行InAppBrowser,我需要打開與選項的上下文菜單中得到這樣的照片:http://puu.sh/nJUP0/433fa31c83.jpg從圖庫中選擇/相機InAppBrowser

在iPhone 6這項工作,但在不是。

我輸入

<input type="file" accept="image/*" /> 
+0

不知道,但這個可以幫助你http://stackoverflow.com/questions/30074684/open-camera-or-gallery-from-inappbrowser-in-apache-cordova –

+0

@jaydroider找到你的答案正確地在沒有inappbrowser的HTML,但我需要打開inappbrowser內的相機或畫廊。 –

+0

使用window.open('image/*','_system','location = yes')給出一個嘗試。 –

回答

0

他相機的文檔涵蓋這一點。這不適合你嗎?有關詳細信息,請查看Camera.PictureSourceType。該文檔站點給出了這個例子來推導出一個圖像:

function getPhoto(source) { 
    // Retrieve image file location from specified source 
    navigator.camera.getPicture(onPhotoURISuccess, onFail, { quality: 50, 
    destinationType: destinationType.FILE_URI, 
    sourceType: source }); 
} 

sourceType在這裏是至關重要的一點。它可以是Camera.PictureSourceType.CAMERA(默認),或者對你更有用,它可以是Camera.PictureSourceType.PHOTOLIBRARY或Camera.PictureSourceType.SAVEDPHOTOALBUM。

read more

+0

我已經安裝了該插件,並執行該應用程序,但inappbrowser內部不工作該插件。 http://puu.sh/nJWK6/2e04034395.png –

相關問題