CopyFromScreen The given coordinages are the top-left corner of the region. The dimensions of the region depend on the size of the Bitmap. Examples // Create a 300 x 150 Bitmap //
Bitmap bmp( 300, 150 ); // Copy a 300 x 100 region from the screen to the Bitmap // // The top-left coordinates of the region are 200.0 and 100.0 // bmp.CopyFromScreen( 200.0, 100.0 ); Other functions of the class Bitmap
Questions about CopyFromScreen? Click here. |