gpt4 book ai didi

nativescript - 如何调整从 nativescript-imagepicker 插件中选取的图像大小

转载 作者:行者123 更新时间:2023-12-02 03:09:04 28 4
gpt4 key购买 nike

我已经在我的 Nativescript -Angular 代码中实现了 nativescript 图像选择器插件,但我试图弄清楚如何调整从 nativescript-imagepicker 中选取的图像的大小,该图像可以显示为圆圈中的帐户或个人资料图片

最佳答案

所选图像将是 ImageAsset 的实例,您可以设置options具有所需的宽度和高度,然后调用 use fromAsset方法ImageSource用于调整大小的图像。

context
.authorize()
.then(function() {
return context.present();
})
.then(function(selection) {
selection.forEach(function(selected) {
// Set values for width, height, keepAspectRatio (boolean)
selected.options = {width, height, keepAspectRatio };
imageSourceModule.fromAsset(selected)
.then((imageSource) => {
// imageSource is resized one
});
});
}).catch(function (e) {
// process error
});

关于nativescript - 如何调整从 nativescript-imagepicker 插件中选取的图像大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58178334/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com