1

我一直在浏览 Nativescript 网站,但没有找到从手机本地获取图片的方法。如果有人知道在 android 和 ios 上都可以做到这一点,我会非常高兴。

4

3 回答 3

3

在您的情况下,您可以使用file-system 模块和本机代码从您的设备访问外部存储。您可以获取文件的路径并使用 NativeScript file-systemapi 打开它。我附上了示例示例,您如何从相机胶卷存储中获取图像的路径。您还可以在此处查看文章,其中描述了您可以从 android 设备存储访问的内容。

打字稿

 import {path} from "file-system";

 var tempPicturePath = path.join(android.os.Environment.getExternalStoragePublicDirectory(android.os.Environment.DIRECTORY_DCIM).getAbsolutePath(), "20160719_155053.jpg");
    console.log("extr storage "+tempPicturePath);

javascript

var file_system_1 = require("file-system");

var tempPicturePath = file_system_1.path.join(android.os.Environment.getExternalStoragePublicDirectory(android.os.Environment.DIRECTORY_DCIM).getAbsolutePath(), "20160719_155053.jpg");
        console.log("extr storage " + tempPicturePath);
于 2016-07-20T09:02:55.443 回答
1

尼克,我想你想用户从图库中选择图像,对吧?我用这个 nativescript 插件完成了这个:

https://www.npmjs.com/package/nativescript-imagepicker

import * as imagepicker from "nativescript-imagepicker";

let context = imagepicker.create({
    mode: "single" // use "multiple" for multiple selection
});

context
    .authorize()
    .then(function() {
        return context.present();
    })
    .then(function(selection) {
        selection.forEach(function(selected) {
            // process the selected image
        });
        list.items = selection;
    }).catch(function (e) {
        // process error
    });
于 2018-06-09T23:44:46.920 回答
0

根据https://whatwebcando.today/camera-microphone.html,您可以只使用纯 HTML 输入字段。

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

按下移动设备上的按钮会打开包含实时相机图片选项和文件浏览器(Anroid (Mi9T) 行为)的图库。

希望这个答案不会错过您的观点;-)

于 2021-07-09T10:39:30.103 回答