I save image from server to local path on device
downLoad() {
this.http.downloadFile('http://example.com/files/files/image.jpg', {}, {}, 'image.jpg')
.then(data => {
console.log(data) ;
})
.catch(error => {
console.log(error) ;
});
}
But image save not in Photo Gallery. How it fix?