克隆时C#System.Drawing.Bitmap抛出内存不足异常

时间:2018-07-18 13:38:56

标签: c# bitmap system.drawing

我有一个要克隆的位图图像,如下所示:

Bitmap bmpCrop = bmp.Clone(new System.Drawing.Rectangle(left, top, right - left + 1, bottom - top), bmp.PixelFormat);

有时此行会引发OutOfMemoryException类型的异常,因此在克隆之前,我想确保Rectangle中指定的坐标不在位图的范围之内,因为据我所知,Clone()可能还会抛出一个内存不足异常。

我知道我可以通过以下操作获得图像的边界:

GraphicsUnit units = GraphicsUnit.Point;
RectangleF bmpRectangleF = bmp.GetBounds(ref units);

但后来我不知道该如何与Rectanble界限相提并论。

有什么办法吗?

1 个答案:

答案 0 :(得分:0)

最后,我已经完成了以下工作(感谢Alex K.的建议):

RectangleF rectangleF = new System.Drawing.Rectangle(left, top, right - left + 1, bottom - top);
GraphicsUnit units = GraphicsUnit.Pixel;
RectangleF bmpRectangleF = bmp.GetBounds(ref units);
if (bmpRectangleF.Contains(rectangleF))
{
    Bitmap bmpCrop = bmp.Clone(rectangleF, bmp.PixelFormat);
    return (Bitmap)(bmpCrop);
}