我需要在Meteor上实现照片捕捉。是否有任何Meteor软件包可以实现图像捕获?
答案 0 :(得分:14)
所以使用Meteor Camera Package;
meteor add mdg:camera
<强> HTML 强>
<template name="example">
<a href="#" class="takePhoto">take photo</a>
<img class="photo">
</template>
<强> JS 强>
Template.example.events({
'click .takePhoto': function(e, instance) {
e.preventDefault();
var cameraOptions = {
width: 800,
height: 600
};
MeteorCamera.getPicture(cameraOptions, function (error, data) {
if (!error) {
instance.$('.photo').attr('src', data);
}
});
}
});