一个项目要用到WEB无插件在线截图,搜索了一下,看到很多人在大叫otag是开源的。
这就是传说中的开源,,,而核心原码 otagSnapr并没有提供
Dim process As New System.Diagnostics.Process()
process.EnableRaisingEvents = False
process.StartInfo.RedirectStandardOutput = False
process.StartInfo.UseShellExecute = False
process.StartInfo.FileName = Server.MapPath("~/") + "\bin\otagSnapr"
process.StartInfo.Arguments = String.Format("""{0}"" ""{1}""", Me.TextBox1.Text, savepath + ".png")
process.Start()
process.WaitForExit(120000)
process.Dispose()