Cordova/Ionic

1.cordova中的device可以获取设备类型,系统版本等信息;
2.cordova中的AndroidFullScreen可以获取到屏幕像素
if(this.plt.is("android")||this.plt.is("ios"))
{
this.screen.immersiveHeight().then(height=>{
this.device_screenHeight = height;

}
);
this.screen.immersiveWidth().then(width=>{
this.device_screenWidth = width;
}
);
}

3.imageResizer可以截取图片;
4.photoviewer可以显示图片和分享(android);
5.cordova中的camera可以调用原生相机,返回值可以返回base64的图片信息或者图片地址(path或者uri)

Leave a Reply

Your email address will not be published. Required fields are marked *