需要实现操作,考试完成后需要将成绩生成一张图片,分享出去,
import { Screenshot } from '@ionic-native/screenshot';
constructor(private screenshot: Screenshot){}
public testScreenshots() {
this.screenshot.save('jpg', 80, 'myscreenshot').then((res)=>{
console.log('成功保存在本地的文件路径'+res.filePath);
},(err)=>{
this.globalFunction.showAlert('save失败'+err);
});
}