public Bitmap showCaptureArea(Size s, Bitmap b, int mode) { f_Canvas fc = new f_Canvas(); fc.bounds = s; fc.bmp = b; fc.mode = mode; fc.ShowDialog(); return(fc.retImg); }
public static Image Snip() { var rc = Screen.PrimaryScreen.Bounds; using (Bitmap bmp = new Bitmap(rc.Width, rc.Height, System.Drawing.Imaging.PixelFormat.Format32bppPArgb)) { using (Graphics gr = Graphics.FromImage(bmp)) gr.CopyFromScreen(0, 0, 0, 0, bmp.Size); using (var snipper = new f_Canvas() { bounds = new Size(100, 100), bmp = new Bitmap(1, 1) }) { if (snipper.ShowDialog() == DialogResult.OK) { return(snipper.Image); } } return(null); } }