111,083
社区成员




private void button1_Click(object sender, EventArgs e)
{
Bitmap bmp = new Bitmap(pictureBox1.Image,pictureBox1.Width,pictureBox1.Height);
Graphics g = Graphics.FromImage(bmp);
g.DrawLine(new Pen(Color.Blue, 10), 100, 100, 0, 0);
bmp.Save("d://1.bmp", System.Drawing.Imaging.ImageFormat.Bmp);
}
bmp.Save("C:/1.bmp", System.Drawing.Imaging.ImageFormat.Bmp);
Bitmap bmp = new Bitmap(pictureBox1.BackgroundImage);
bmp.Save("c:\\1.bmp");