Exemple #1
0
        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);
        }
Exemple #2
0
        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);
            }
        }