I am trying to select a picture from the user's gallery, view it in an ImageView
and then save it for upload.
I am using the nativescript-imagepicker
plugin.
Here is how i select the image from gallery and set it on the ImageView
:
export function selectPicture() :void{
let context = imagePicker.create({
mode : "single"
});
context.authorize()
.then(()=>{ return context.present();})
.then((selection)=>{
selection.forEach((selected)=>{
selected.getImage().then((value :ImageSource)=>{
imageView.imageSource = value;
})
})
});
}
An this is how I save it and upload it :
export function upload():void{
try {
let photoPath = FileNameService.generatePictureFilePath();
let fileName = FileNameService.getFilenameFromPath(photoPath);
//this is where I get the error
**fromAsset(imageView.src)**.then(
(res) => {
imageSource = res;
let saved = imageSource.saveToFile(...);
if(saved){//doStuff },
(error)=>{
alert("Error " + error);
})
}catch (e){
alert(e);
}
}
the fromAsset function is throwing the following error :
asset.getImageAsync is not a function
What am I doing wrong?
When you get the selected item from the gallery you could use ImageSource
saveToFile(<path>, <file_format>);
method to save the image. Then you will be able the use the file path to upload the image to the needed backend service. You could review the below-attached example.For further help, you could also review the sample project here.