Как напечатать снимок экрана в wpf
Сначала я не говорю по-английски. Тем не мение. Я пытаюсь сделать это. Однако это не третий день. Я делаю сейчас это программа печати экрана после захвата экрана. Я ссылаюсь на этот код. https://social.msdn.microsoft.com/Forums/windows/en-US/0623964c-4bb4-44c0-a1cb-4dbb2fa161f0/need-simple-c-code-to-print-a-screen-capture?forum=winforms
но это только для winform. Я пытался попробовать то же самое из wpf с этим. Я хочу автоматически вписаться в страницу. Вот мой код
Bitmap bmpScreenshot;
void bt1_MouseDown(object sender, MouseButtonEventArgs e)
{
var cv = sender as Canvas;
var btName = cv.Name;
if (btName.Contains("8"))
{
MakeScreenshot();
PrintDialog printDlg = new System.Windows.Controls.PrintDialog();
System.Drawing.Printing.PrintDocument pd = new System.Drawing.Printing.PrintDocument();
pd.DefaultPageSettings.Landscape = true;
pd.PrintPage += printPage;
if (printDlg.ShowDialog() == true)
{
pd.Print();
}
}
}
public System.Windows.Point Location
{
get
{
return new System.Windows.Point(Left, Top);
}
set
{
Left = value.X;
Top = value.Y;
}
}
public void MakeScreenshot()
{
Graphics g = Graphics.FromHwnd(new System.Windows.Interop.WindowInteropHelper(this).Handle);
FrameworkElement pnlClient = this.Content as FrameworkElement;
double dWidth = -1;
double dHeight = -1;
if (pnlClient != null)
{
dWidth = pnlClient.ActualWidth;
dHeight = pnlClient.ActualHeight;
}
var desktop = System.Windows.SystemParameters.WorkArea;
this.Left = desktop.Right - this.Width;
this.Top = desktop.Bottom - this.Height;
bmpScreenshot = new Bitmap((int)dWidth, (int)dHeight, g);
var memoryGrphics = Graphics.FromImage(bmpScreenshot);
memoryGrphics.CopyFromScreen((int)this.Location.X, (int)this.Location.Y, 0, 0, System.Windows.Forms.Screen.PrimaryScreen.Bounds.Size);
}
bmpScreenshot.Save("Screenshot.png", System.Drawing.Imaging.ImageFormat.Png);
}
private void printPage(object sender,System.Drawing.Printing.PrintPageEventArgs e)
{
e.Graphics.DrawImage(bmpScreenshot, 0, 0);
}
1 ответ
Что вы можете сделать, это сделать снимок экрана как растровое изображение, используя System.Drawing, т.е. Winforms, а затем преобразовать захваченное растровое изображение в изображение BitmapSource.
private static BitmapSource CopyScreen()
{
using (var screenBmp = new Bitmap(
(int)SystemParameters.PrimaryScreenWidth,
(int)SystemParameters.PrimaryScreenHeight,
PixelFormat.Format32bppArgb))
{
using (var bmpGraphics = Graphics.FromImage(screenBmp))
{
bmpGraphics.CopyFromScreen(0, 0, 0, 0, screenBmp.Size);
return Imaging.CreateBitmapSourceFromHBitmap(
screenBmp.GetHbitmap(),
IntPtr.Zero,
Int32Rect.Empty,
BitmapSizeOptions.FromEmptyOptions());
}
}
}
Вам нужно будет добавить ссылку на System.Drawing и следующие пространства имен:
using System;
using System.Drawing;
using System.Drawing.Imaging;
using System.Windows;
using System.Windows.Interop;
using System.Windows.Media.Imaging;
После преобразования экрана в BitmapSource вы печатаете то же самое.
Управление изображениями xaml
<Image Name='imageCapture' Stretch='UniformToFill'/>
///Print Screen shot code
PrintDialog imgControlPrint = new PrintDialog();
///img Control wpf
imageCapture.Source=CopyScreen();
if ((bool)imgControlPrint.ShowDialog().GetValueOrDefault())
{
imageCapture.Measure(new Size(imgControlPrint.PrintableAreaWidth,imgControlPrint.PrintableAreaHeight));
imageCapture.Arrange(new Rect(new Point(0, 0), imageCapture.DesiredSize));
imgControlPrint.PrintVisual(imageCapture, "Screen Shot");
}