Example #1
0
 public void GetBitmap()
 {
     WebPageBitmap Shot = new WebPageBitmap(this.WebSite/*, this.ScreenWidth, this.ScreenHeight*/);
     Shot.GetIt();
     Bitmap Pic = Shot.DrawBitmap();
     Entities.SystemSet ss = (Entities.SystemSet)GlobalPars.GloPars["systemset"];
     string temp = ss.EvidenceImgSavePath + "\\" + DateTime.Now.ToString().Replace(":", "-") + ".jpg";
     Pic.Save(temp);
 }
Example #2
0
        public void GetBitmap()
        {
            WebPageBitmap Shot = new WebPageBitmap(this.WebSite /*, this.ScreenWidth, this.ScreenHeight*/);

            Shot.GetIt();
            Bitmap Pic = Shot.DrawBitmap();

            Entities.SystemSet ss   = (Entities.SystemSet)GlobalPars.GloPars["systemset"];
            string             temp = ss.EvidenceImgSavePath + "\\" + DateTime.Now.ToString().Replace(":", "-") + ".jpg";

            Pic.Save(temp);
        }