我正在制作剪切工具。我已经得到它,以便我的程序可以用鼠标绘制一个矩形并保存该图像。现在我要做的是将生成的图像转移到一个图片框中,该图片框显示用户在决定保存或其他任何内容之前刚刚捕获的内容。
我有办法做到这一点吗?
到目前为止,我的屏幕截图代码使用我的ScreenCapture类中的以下代码将捕获的图像保存到剪贴板:
public static bool saveToClipboard = true;
public static void CaptureImage(bool showCursor, Size curSize, Point curPos, Point SourcePoint, Point DestinationPoint, Rectangle SelectionRectangle, string FilePath, string extension)
{
using (Bitmap bitmap = new Bitmap(SelectionRectangle.Width, SelectionRectangle.Height))
{
using (Graphics g = Graphics.FromImage(bitmap))
{
g.CopyFromScreen(SourcePoint, DestinationPoint, SelectionRectangle.Size);
if (showCursor)
{
Rectangle cursorBounds = new Rectangle(curPos, curSize);
Cursors.Default.Draw(g, cursorBounds);
}
}
if (saveToClipboard)
{
Image img = (Image)bitmap;
Clipboard.SetImage(img);
}
}
}
以前有没有人做过这样的事情?此外,是否可以让图片框自动调整大小以便使用屏幕捕获大小而不是图片框?
更新
除了下面的一些评论之外,我一直在尝试保存我在上面课程中存储的图像并将其传递到图片框。但是当我这样做时没有显示任何内容。我一直在使用的代码是:
在form1.cs上举行:
public void SetImage(Image img)
{
imagePreview.Image = img;
}
在屏幕截图类中:
if (saveToClipboard)
{
Image img = (Image)bitmap;
ControlPanel cp = new ControlPanel();
cp.SetImage(img);
Clipboard.SetImage(img);
}
答案 0 :(得分:0)
ControlPanel cp = new ControlPanel();
cp.SetImage(img);
这不起作用,因为您需要访问正在使用的父表单,而不是创建它的新实例。
查看有关创建简单自定义事件的answer to this question,但是将图片添加到他们创建的ProgressEventArgs
。然后在您的主表单上,加入事件并从那里更新图片框。