我正在使用navigator.camera.getpicture通过cordova拍照。 我们可以为图片指定图片名称吗?
答案 0 :(得分:0)
功能camera.getPicture打开设备的默认相机应用程序,以便用户可以拍照(如果Camera.sourceType = Camera.PictureSourceType.CAMERA,这是默认设置)。拍摄照片后,相机应用程序将关闭,您的应用程序将恢复。
如果Camera.sourceType = Camera.PictureSourceType.PHOTOLIBRARY或Camera.PictureSourceType.SAVEDPHOTOALBUM,则会显示照片选择器对话框,从中可以选择相册中的照片。
返回值将以下列格式之一发送到cameraSuccess函数,具体取决于您指定的cameraOptions:
A String containing the Base64 encoded photo image (default).
A String representing the image file location on local storage.
https://cordova.apache.org/docs/ko/2.0.0/cordova/camera/camera.getPicture.html