0
我的問題是有關本文檔有關攝像頭模塊:https://docs.nativescript.org/hardware/cameraNativescript存取權限SD卡的相機模塊圖像目錄
它保存文件在/ SD卡/安卓/數據/的applicationName /文件/ picname
我怎麼能拉任何與image.imageSource一起使用的圖像?
我的問題是有關本文檔有關攝像頭模塊:https://docs.nativescript.org/hardware/cameraNativescript存取權限SD卡的相機模塊圖像目錄
它保存文件在/ SD卡/安卓/數據/的applicationName /文件/ picname
我怎麼能拉任何與image.imageSource一起使用的圖像?
您可以使用本機代碼訪問設備的外部存儲。您可以查看給定的代碼片段。
var appModule = require("application");
var tempPicturePath = path.join(appModule .android.os.Environment.getExternalStoragePublicDirectory(appModule .android.os.Environment.DIRECTORY_PICTURES).getAbsolutePath(), "imagename.png");
console.log("extr storage "+tempPicturePath);