简体   繁体   中英

jquery webcam plugin picture

i am trying to use the jquery webcam plugin and i believe i have placed every thing right but still i have a problem .
thought the #webcam div is working fine and show frames from the cam but on clicking capture no image is taken i get the following error on the chrome console : Uncaught TypeError: Object # has no method 'capture'

there are similar questions here but none seems to solve my problem i have placed the callbacks too .

jQuery("#webcam").webcam({

    width: 320,
height: 240,
mode: "callback",
swffile: "../jcam/jscam_canvas_only.swf",

onTick: function(remain) {
},

onSave: function(data) {...
    }
},
onCapture: function () {....
},

debug: function (type, string) {
},
onLoad: function () {.......
    }
}
});

Try this

$(function(){

jQuery("#webcam").webcam({

    width: 320,

    height: 240,

    mode: "callback",

    swffile: "../jcam/jscam_canvas_only.swf",

    onTick: function(remain) {
    },

    onSave: function(data) {...
        }
    },
    onCapture: function () {....
    },

    debug: function (type, string) {
    },
    onLoad: function () {.......
        }
    }
});

});

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM