问题描述
我创建一个应用程序(Windows窗体),它允许用户采取基于他们选择(拖动来选择区域)的位置的屏幕截图。我想补充一点preVIEW窗格中,以便用户缩放可以选择他们想要更多的precisely(大像素)的区域,多数民众赞成。在mouseMove事件我有一个下面code ...
I'm creating an application (Windows Form) that allows the user to take a screenshot based on the locations they choose (drag to select area). I wanted to add a little "preview pane" thats zoomed in so the user can select the area they want more precisely (larger pixels). On a mousemove event i have a the following code...
private void falseDesktop_MouseMove(object sender, MouseEventArgs e)
{
zoomBox.Image = showZoomBox(e.Location);
zoomBox.Invalidate();
bmpCrop.Dispose();
}
private Image showZoomBox(Point curLocation)
{
Point start = new Point(curLocation.X - 50, curLocation.Y - 50);
Size size = new Size(100, 90);
Rectangle rect = new Rectangle(start, size);
Image selection = cropImage(falseDesktop.Image, rect);
return selection;
}
private static Bitmap bmpCrop;
private static Image cropImage(Image img, Rectangle cropArea)
{
if (cropArea.Width != 0 && cropArea.Height != 0)
{
Bitmap bmpImage = new Bitmap(img);
bmpCrop = bmpImage.Clone(cropArea, bmpImage.PixelFormat);
bmpImage.Dispose();
return (Image)(bmpCrop);
}
return null;
}
这是失败,有内存异常的行是:
The line that fails and has the Out of Memory exception is:
bmpCrop = bmpImage.Clone(cropArea, bmpImage.PixelFormat);
基本上这样做是需要鼠标指针周围一个100x90的矩形和拉那到zoomBox,这是一个PictureBox控件。然而,在这个过程中,我得到一个内存不足的错误。它是什么,我这样做正确吗?
Basically what this does is it takes a 100x90 rectangle around the mouse pointer and pulls that into the zoomBox, which is a picturebox control. However, in the process, i get an Out Of Memory error. What is it that i am doing incorrectly here?
感谢您的帮助。
推荐答案
出在C#中成像的内存,通常是错RECT或点的符号 - 有点红鲱鱼。我敢打赌,启动
的负X或Y 时发生错误或的Size.Hight + Y或Size.Width + X比大海特或图像的宽度
Out of memory in C# imaging, is usually sign of wrong rect or point - a bit of red herring. I bet start
has negative X or Y when error happens or the Size.Hight + Y or Size.Width + X is bigger than Hight or width of the image.
这篇关于创建位图时,C#内存不足的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!