当然百度出上W条答案
上代码,相信下面代码和小伙伴大同吧
相信好多做webview app的小伙伴们都有同样的问题,在pc上能轻松实现video 抓图。但是在android手机大多是不支持canvas.getContext('2d').drawImage方法的。真是心中有一万个草泥马出现。
那当然要做上下兼容了。这时cordova-plugin-crosswalk-webview就好好用了(Crosswalk作为一款开源的web引擎,是为了解决android 低系统版本适配的问题而存在的,具体还是请看官网吧。)
https://crosswalk-project.org/index_zh.html
用ionic cordova plugin add cordova-plugin-crosswalk-webview后再打包app。完美解决android手机不支持canvas.getContext('2d').drawImage方法。
canvas.getContext('2d').drawImage(video,0,0,canvas.width,canvas.height);
let image=canvas.toDataURL('image/png');
后的image是一个base64图片。可以用cordova-base64-to-gallery(http://ionicframework.com/docs/native/base64-to-gallery/)
最后上代码
大功告成。。。。。。