private void pictureBox1_Paint(object sender, PaintEventArgs e)
        {
            Graphics paper;
            paper = pictureBox1.CreateGraphics();
            Pen pen=new Pen(Color.Red);
            Bitmap pic = new Bitmap(@"D:\201138155254591.jpg");
            paper.DrawImage(pic, 250, 50, 700, 600);
        }