我需要捕捉并使用我的手指或笔在图像上的某个位置标记并将其保存到文件中;
这个怎么做 ?
我使用这个功能。
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 });
}