Image  op=(Image ) Image.FromFile ("d:\\1.jpg");
             Bitmap newBmp = new Bitmap(op.Width / 2, op.Height / 2,System .Drawing .Imaging . PixelFormat.Format24bppRgb);
             Graphics newBmpGraphics = Graphics.FromImage(newBmp);
             newBmpGraphics.DrawImage(op, new Rectangle(0, 0, op.Width/2, op.Height/2), new Rectangle(op.Width / 2, op.Height / 2, op.Width, op.Height), GraphicsUnit.Pixel);
             newBmpGraphics.Save();
             newBmp.Save("d:\\5.jpg",System.Drawing .Imaging. ImageFormat.Jpeg);
              我生成的图片很奇怪,不是我想要的形式(就是原来图片的右下角(四分之一)),它显示的是个图片:大部分图片是黑的,只有小部分是图片,为什么,很是奇怪