WPF—截屏

作者:追风剑情 发布于:2019-8-20 17:01 分类:C#

示例

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Windows;
  6. using System.Windows.Controls;
  7. using System.Windows.Data;
  8. using System.Windows.Documents;
  9. using System.Windows.Input;
  10. using System.Windows.Media;
  11. using System.Windows.Media.Imaging;
  12. using System.Windows.Navigation;
  13. using System.Windows.Shapes;
  14. using System.ComponentModel;//INotifyPropertyChanged
  15. using System.Threading.Tasks;
  16.  
  17. namespace WpfTest
  18. {
  19. /// <summary>
  20. /// MainWindow.xaml 的交互逻辑
  21. /// </summary>
  22. public partial class MainWindow : Window
  23. {
  24. public MainWindow()
  25. {
  26. InitializeComponent();
  27. }
  28.  
  29. private void Button_Click(object sender, RoutedEventArgs e)
  30. {
  31. //对窗口截屏
  32. System.Drawing.Bitmap bmp = GetWindowSnapshot();
  33. SaveWindowSnapshot("F:\\snapshot.png", bmp);
  34. }
  35.  
  36. /// <summary>
  37. /// 对窗口截屏
  38. /// </summary>
  39. /// <param name="padding">相对窗口的内边矩</param>
  40. /// <returns></returns>
  41. public System.Drawing.Bitmap GetWindowSnapshot(int left = 0, int top = 0, int right = 0, int bottom = 0)
  42. {
  43. //窗口本地坐标
  44. Point ptLeftUp = new Point(left, top);
  45. Point ptRightDown = new Point(this.ActualWidth - right, this.ActualHeight - bottom);
  46. //本地坐标转屏幕坐标
  47. ptLeftUp = this.PointToScreen(ptLeftUp);
  48. ptRightDown = this.PointToScreen(ptRightDown);
  49. //窗口在屏幕上的宽高
  50. double width = ptRightDown.X - ptLeftUp.X;
  51. double height = ptRightDown.Y - ptLeftUp.Y;
  52. System.Drawing.Size size = new System.Drawing.Size((int)width, (int)height);
  53.  
  54. try
  55. {
  56. //System.Drawing.Rectangle rc = System.Windows.Forms.SystemInformation.VirtualScreen;
  57. var bitmap = new System.Drawing.Bitmap((int)width, (int)height, System.Drawing.Imaging.PixelFormat.Format32bppArgb);
  58.  
  59. using (System.Drawing.Graphics memoryGrahics = System.Drawing.Graphics.FromImage(bitmap))
  60. {
  61. memoryGrahics.CopyFromScreen((int)ptLeftUp.X, (int)ptLeftUp.Y, 0, 0, size, System.Drawing.CopyPixelOperation.SourceCopy);
  62. }
  63. return bitmap;
  64. }
  65. catch (Exception)
  66. {
  67.  
  68. }
  69. return null;
  70. }
  71.  
  72. /// <summary>
  73. /// 保存截图
  74. /// </summary>
  75. /// <param name="filePath"></param>
  76. public void SaveWindowSnapshot(string filePath, System.Drawing.Bitmap bmp)
  77. {
  78. if (bmp == null)
  79. return;
  80. bmp.Save(filePath, System.Drawing.Imaging.ImageFormat.Png);
  81. }
  82. }
  83. }

标签: C#

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号