我使用Scriptcam为用户注册我的网站时拍照。
用于拍摄照片的代码是:
function base64_tofield() {
jQuery('#image').val(jQuery.scriptcam.getFrameAsBase64());
jQuery('#preview').attr("src", "data:image/png;base64," + jQuery.scriptcam.getFrameAsBase64());
};
我需要预先填写预览和base64字段值,如果它们已经注册并且已经拍摄了他们的照片。我可以以某种方式将图像URL传递给此函数吗?