我正在为 ios/andorid/windows 开发一个应用程序,它具有捕获图像并将其保存在我们的应用程序中的功能。我的图像正在捕获并保存到文件夹并显示在 div 中。但我想为我拍摄的那张图像添加日期时间。假设是否在 2013 年 8 月 25 日拍摄照片。我想在右上角的图像中显示这个日期时间。
我们如何在 phonegap 中实现这一点。我听说过一些 canvas html5 功能,但我不知道如何在 canvas 标签中使用拍摄的图像。
function capturePhoto() {
navigator.camera.getPicture(onPhotoDataSuccess, onFail, { quality: 50,
destinationType: destinationType.FILE_URI });
}
function onFail(message) {
alert('Failed because: ' + message);
}
function onPhotoDataSuccess(imageData) {
console.log("Image Property-->");
var smallImage = document.getElementById('smallImage');
smallImage.style.display = 'block';
// smallImage.src = "data:image/jpeg;base64," + imageData;
smallImage.src = imageData;
}
<div data-role="page">
<div data-role="header" data-theme="b">
<h1>DATE !T</h1>
</div><!-- /header -->
<div data-role="content">
<button onclick="capturePhoto();">Capture Photo</button><br>
<img style="display:none;width:60px;height:60px;" id="smallImage" src="" />
</div><!-- /content -->
<div data-role="footer" data-position="fixed" data-theme="b">
<h4>Footer</h4>
</div><!-- /footer -->