function funSnap(CTRL_OBJ){ //抓图 GetMyParameter(1); //$("WebCMS").ChannelCapture(0, 0); g_xmlhttp.onreadystatechange=function() { if (g_xmlhttp.readyState != 4){return;} } g_xmlhttp.open("post", "../cgi-bin/webcommand", true); SafeHttpSend(g_xmlhttp, "cmd=video;func=snap;value1=0;value2=0;"); if (OSVersion == 61) var screenshotbool = $("MyCSharpActiveX").Screenshot(FILEPATH); else var screenshotbool = $("MyCSharpActiveX").RTSP_Screenshot(FILEPATH); if (screenshotbool) window.status = "ScreenShot OK"; else window.status = "ScreenShot Failure"; }
时间: 2024-03-29 07:39:14 浏览: 266
/out/target/common/obj/JAVA_LIBRARIES/framework_intermediates/classes.jar
5星 · 资源好评率100%
这是一段 JavaScript 函数,它似乎用于在 Web 页面中进行视频截图。首先,它调用 GetMyParameter 函数获取一些参数。然后,它使用 jQuery 库中的 ChannelCapture 方法来获取视频图像。接下来,它创建一个 XMLHttpRequest 对象,并将其发送到服务器上的 "../cgi-bin/webcommand" URL。请求的命令参数和功能参数指定要执行的操作和参数值。如果请求成功,它将显示 "ScreenShot OK" 消息,否则它将显示 "ScreenShot Failure" 消息。最后,它使用 ActiveX 控件中的 Screenshot 或 RTSP_Screenshot 方法来进行实际的截图操作,具体取决于操作系统版本。
阅读全文