我知道我应该使用任何插件。我目前使用一个名为gif.js的库,它允许我生成一个gif。
//this is result of create the gif
url = blob:http://localhost:8100/c5b4bc73-e64d-4556-982a-537a7027a1e5;
<Img src = 'blob:http://localhost:8100/c5b4bc73-e64d-4556-982a-537a7027a1e5'>
我可以毫无问题地看到gif。
我打算将这个gif保存在我的Android设备上的某个文件夹中。我怎么能这样做?
答案 0 :(得分:0)
使用FileTransfer插件
const fileTransfer = new FileTransfer();
fileTransfer.download(frompath, that.fsurl+topath,
(response) => {
resolve(response);
},
(error) => {
reject(error);
}
);