我是 PhoneGap 的新手,想知道如何将应用内图像保存到 iOS 中的照片。
虽然我能够使用
navigator.camera.getPicture
有选项
quality:50, destinationType:Camera.DestinationType.DATA_URL,saveToPhotoAlbum: true
要将相机拍摄的照片保存到照片中,我现在正在尝试了解如何将应用内图像保存到照片中。
考虑以下 PhoneGap - Cordova 页面,其中元素 myPhoto 保存图像数据,例如“data:image/jpeg;base64”...
<html>
<head>
<title>Save Image</title>
<script type="text/javascript" charset="utf-8" src="cordova-2.1.0.js"></script>
<script type="text/javascript" charset="utf-8">
function savePicture(){
//this is where the magic would happen
//how can I save myPhoto to Photos?
//output imageData to a jpg or png file which would show up in Photos?
}
</script>
</head>
<body>
<button onclick="savePicture();">Save Photo</button> <br>
<input type="hidden" name="myPhoto" id="myPhoto" value="">
</body>
</html>
问题:
savePicture() 应该如何通过 Phonegap 将 myPhoto 中的图像数据保存到 iOS 中的照片?