画像のどこかをキャプチャして指またはペンのマークを使用し、ファイルに保存する必要があります。
これを行う方法 ?
私はこの機能を使用しています。
function capturePhotoEdit() {
// Take picture using device camera, allow edit, and retrieve image as base64-encoded string
navigator.camera.getPicture(onPhotoDataSuccess, onFail, { destinationType: Camera.DestinationType.FILE_URI,quality: 20, **allowEdit**: true });
}