Are there any C# library for screen scraping?

Method implementation: public static void CaptureImage(Point SourcePoint, Point DestinationPoint, Rectangle SelectionRectangle, string FilePath) { using (Bitmap bitmap = new Bitmap(SelectionRectangle. Width, SelectionRectangle. Height)) { using (Graphics g = Graphics.

FromImage(bitmap)) { g. CopyFromScreen(SourcePoint, DestinationPoint, SelectionRectangle. Size); } bitmap.

Save(FilePath, ImageFormat. Bmp); } } } Subsequent call: Point StartPoint = new Point(ClickPoint. X, ClickPoint.

Y); Rectangle bounds = new Rectangle(ClickPoint. X, ClickPoint. Y, CurrentPoint.

X - ClickPoint. X, CurrentPoint. Y - ClickPoint.

Y); ScreenShot. CaptureImage(StartPoint, Point. Empty, bounds, ScreenPath); Credit to original author @ http://www.codeproject.com/KBecause s/TeboScreen.aspx.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions