我想从我的wpf窗口创建缩略图,并希望将其保存到数据库中并稍后显示。有什么好的解决方案吗?
我已经开始使用RenderTargetBitmap,但我找不到任何简单的方法将它变成字节。
RenderTargetBitmap bmp = new RenderTargetBitmap(180, 180, 96, 96, PixelFormats.Pbgra32);
bmp.Render(myWpfWindow);
使用user32.dll和Graphics.CopyFromScreen()对我不利 因为它是here,因为我也想从用户控件中截取屏幕截图。
由于
答案 0 :(得分:5)
Steven Robbins写了a great blog post关于捕获控件的屏幕截图,其中包含以下扩展方法:
public static class Screenshot
{
/// <summary>
/// Gets a JPG "screenshot" of the current UIElement
/// </summary>
/// <param name="source">UIElement to screenshot</param>
/// <param name="scale">Scale to render the screenshot</param>
/// <param name="quality">JPG Quality</param>
/// <returns>Byte array of JPG data</returns>
public static byte[] GetJpgImage(this UIElement source, double scale, int quality)
{
double actualHeight = source.RenderSize.Height;
double actualWidth = source.RenderSize.Width;
double renderHeight = actualHeight * scale;
double renderWidth = actualWidth * scale;
RenderTargetBitmap renderTarget = new RenderTargetBitmap((int) renderWidth, (int) renderHeight, 96, 96, PixelFormats.Pbgra32);
VisualBrush sourceBrush = new VisualBrush(source);
DrawingVisual drawingVisual = new DrawingVisual();
DrawingContext drawingContext = drawingVisual.RenderOpen();
using (drawingContext)
{
drawingContext.PushTransform(new ScaleTransform(scale, scale));
drawingContext.DrawRectangle(sourceBrush, null, new Rect(new Point(0, 0), new Point(actualWidth, actualHeight)));
}
renderTarget.Render(drawingVisual);
JpegBitmapEncoder jpgEncoder = new JpegBitmapEncoder();
jpgEncoder.QualityLevel = quality;
jpgEncoder.Frames.Add(BitmapFrame.Create(renderTarget));
Byte[] _imageArray;
using (MemoryStream outputStream = new MemoryStream())
{
jpgEncoder.Save(outputStream);
_imageArray = outputStream.ToArray();
}
return _imageArray;
}
}
此方法采用控件和比例因子并返回字节数组。所以这似乎非常适合您的要求。
查看the post以获取进一步阅读和一个非常整洁的示例项目。
答案 1 :(得分:0)
您可以使用BitmapEncoder
将您的位图编码为PNG,JPG甚至BMP文件。查看BitmapEncoder.Frames
上的MSDN文档,其中有一个保存到FileStream的示例。您可以将其保存到任何流中。
要从BitmapFrame
获取RenderTargetBitmap
,只需使用BitmapFrame.Create(BitmapSource)
方法创建它。