2025-06-08 23:13:30 +08:00
|
|
|
using System;
|
2025-07-28 14:40:44 +08:00
|
|
|
using System.Drawing;
|
2025-05-25 09:29:48 +08:00
|
|
|
using System.Drawing.Imaging;
|
|
|
|
|
using System.IO;
|
2025-07-30 19:56:22 +08:00
|
|
|
using System.Threading.Tasks;
|
2025-05-25 09:29:48 +08:00
|
|
|
using System.Windows;
|
2025-07-28 14:40:44 +08:00
|
|
|
using System.Windows.Forms;
|
2025-07-30 19:56:22 +08:00
|
|
|
using System.Windows.Media.Imaging;
|
|
|
|
|
using Ink_Canvas.Helpers;
|
2025-07-30 20:06:43 +08:00
|
|
|
using Ink_Canvas.Helpers;
|
|
|
|
|
using Application = System.Windows.Application;
|
2025-07-30 19:56:22 +08:00
|
|
|
using Clipboard = System.Windows.Clipboard;
|
2025-07-30 20:06:43 +08:00
|
|
|
using Size = System.Drawing.Size;
|
2025-05-25 09:29:48 +08:00
|
|
|
|
|
|
|
|
namespace Ink_Canvas {
|
|
|
|
|
public partial class MainWindow : Window {
|
|
|
|
|
private void SaveScreenShot(bool isHideNotification, string fileName = null) {
|
|
|
|
|
var savePath = Settings.Automation.IsSaveScreenshotsInDateFolders
|
|
|
|
|
? GetDateFolderPath(fileName)
|
|
|
|
|
: GetDefaultFolderPath();
|
|
|
|
|
|
|
|
|
|
CaptureAndSaveScreenshot(savePath, isHideNotification);
|
|
|
|
|
|
|
|
|
|
if (Settings.Automation.IsAutoSaveStrokesAtScreenshot)
|
2025-07-28 14:40:44 +08:00
|
|
|
SaveInkCanvasStrokes(false);
|
2025-05-25 09:29:48 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void SaveScreenShotToDesktop() {
|
|
|
|
|
var desktopPath = Path.Combine(
|
|
|
|
|
Environment.GetFolderPath(Environment.SpecialFolder.DesktopDirectory),
|
|
|
|
|
$"{DateTime.Now:yyyy-MM-dd_HH-mm-ss}.png");
|
|
|
|
|
|
|
|
|
|
CaptureAndSaveScreenshot(desktopPath, false);
|
|
|
|
|
|
|
|
|
|
if (Settings.Automation.IsAutoSaveStrokesAtScreenshot)
|
2025-07-28 14:40:44 +08:00
|
|
|
SaveInkCanvasStrokes(false);
|
2025-05-25 09:29:48 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 提取公共的截图和保存逻辑
|
|
|
|
|
private void CaptureAndSaveScreenshot(string savePath, bool isHideNotification) {
|
2025-07-28 14:40:44 +08:00
|
|
|
var rc = SystemInformation.VirtualScreen;
|
2025-05-25 09:29:48 +08:00
|
|
|
|
2025-07-28 14:40:44 +08:00
|
|
|
using (var bitmap = new Bitmap(rc.Width, rc.Height, PixelFormat.Format32bppArgb))
|
|
|
|
|
using (var memoryGraphics = Graphics.FromImage(bitmap)) {
|
|
|
|
|
memoryGraphics.CopyFromScreen(rc.X, rc.Y, 0, 0, rc.Size, CopyPixelOperation.SourceCopy);
|
2025-05-25 09:29:48 +08:00
|
|
|
|
2025-07-12 09:00:51 +08:00
|
|
|
// 确保目录存在
|
2025-05-25 09:29:48 +08:00
|
|
|
var directory = Path.GetDirectoryName(savePath);
|
|
|
|
|
if (!Directory.Exists(directory)) {
|
|
|
|
|
Directory.CreateDirectory(directory);
|
|
|
|
|
}
|
2025-07-12 09:00:51 +08:00
|
|
|
|
|
|
|
|
bitmap.Save(savePath, ImageFormat.Png);
|
2025-05-25 09:29:48 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!isHideNotification) {
|
2025-07-12 09:00:51 +08:00
|
|
|
ShowNotification($"截图成功保存至 {savePath}");
|
2025-05-25 09:29:48 +08:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 获取日期文件夹路径
|
|
|
|
|
private string GetDateFolderPath(string fileName) {
|
2025-07-12 09:00:51 +08:00
|
|
|
if (string.IsNullOrWhiteSpace(fileName)) {
|
|
|
|
|
fileName = DateTime.Now.ToString("HH-mm-ss");
|
2025-06-08 23:13:30 +08:00
|
|
|
}
|
|
|
|
|
|
2025-07-12 09:00:51 +08:00
|
|
|
var basePath = Settings.Automation.AutoSavedStrokesLocation;
|
|
|
|
|
var dateFolder = DateTime.Now.ToString("yyyyMMdd");
|
|
|
|
|
|
|
|
|
|
return Path.Combine(
|
|
|
|
|
basePath,
|
|
|
|
|
"Auto Saved - Screenshots",
|
|
|
|
|
dateFolder,
|
|
|
|
|
$"{fileName}.png");
|
2025-05-25 09:29:48 +08:00
|
|
|
}
|
|
|
|
|
|
2025-07-12 09:00:51 +08:00
|
|
|
// 获取默认文件夹路径
|
2025-05-25 09:29:48 +08:00
|
|
|
private string GetDefaultFolderPath() {
|
2025-07-12 09:00:51 +08:00
|
|
|
var basePath = Settings.Automation.AutoSavedStrokesLocation;
|
2025-05-25 09:29:48 +08:00
|
|
|
var screenshotsFolder = Path.Combine(basePath, "Auto Saved - Screenshots");
|
2025-07-30 19:56:22 +08:00
|
|
|
|
2025-07-12 09:00:51 +08:00
|
|
|
if (!Directory.Exists(screenshotsFolder)) {
|
2025-05-25 09:29:48 +08:00
|
|
|
Directory.CreateDirectory(screenshotsFolder);
|
|
|
|
|
}
|
2025-07-30 19:56:22 +08:00
|
|
|
|
2025-05-25 09:29:48 +08:00
|
|
|
return Path.Combine(
|
2025-07-30 19:56:22 +08:00
|
|
|
screenshotsFolder,
|
2025-05-25 09:29:48 +08:00
|
|
|
$"{DateTime.Now:yyyy-MM-dd_HH-mm-ss}.png");
|
|
|
|
|
}
|
2025-07-30 19:56:22 +08:00
|
|
|
|
|
|
|
|
// 截图并复制到剪贴板
|
|
|
|
|
private async Task CaptureScreenshotToClipboard() {
|
|
|
|
|
try {
|
|
|
|
|
// 隐藏主窗口以避免截图包含窗口本身
|
|
|
|
|
var originalVisibility = this.Visibility;
|
|
|
|
|
this.Visibility = Visibility.Hidden;
|
|
|
|
|
|
|
|
|
|
// 等待窗口隐藏
|
|
|
|
|
await Task.Delay(200);
|
|
|
|
|
|
2025-07-30 20:06:43 +08:00
|
|
|
// 启动区域选择截图
|
|
|
|
|
var selectedArea = await ShowScreenshotSelector();
|
|
|
|
|
|
|
|
|
|
// 恢复窗口显示
|
|
|
|
|
this.Visibility = originalVisibility;
|
|
|
|
|
|
|
|
|
|
if (selectedArea.HasValue && selectedArea.Value.Width > 0 && selectedArea.Value.Height > 0)
|
|
|
|
|
{
|
|
|
|
|
// 截取选定区域
|
|
|
|
|
using (var bitmap = CaptureScreenArea(selectedArea.Value))
|
|
|
|
|
{
|
|
|
|
|
if (bitmap != null)
|
|
|
|
|
{
|
|
|
|
|
// 将截图复制到剪贴板
|
|
|
|
|
CopyBitmapToClipboard(bitmap);
|
|
|
|
|
|
|
|
|
|
// 等待窗口完全显示后自动粘贴
|
|
|
|
|
await Task.Delay(100);
|
|
|
|
|
await AutoPasteScreenshot();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
ShowNotification("截图已取消");
|
2025-07-30 19:56:22 +08:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
catch (Exception ex) {
|
|
|
|
|
ShowNotification($"截图失败: {ex.Message}");
|
|
|
|
|
this.Visibility = Visibility.Visible;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2025-07-30 20:06:43 +08:00
|
|
|
// 显示截图区域选择器
|
|
|
|
|
private async Task<Rectangle?> ShowScreenshotSelector()
|
|
|
|
|
{
|
|
|
|
|
Rectangle? selectedArea = null;
|
|
|
|
|
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
await Application.Current.Dispatcher.InvokeAsync(() =>
|
|
|
|
|
{
|
|
|
|
|
var selectorWindow = new ScreenshotSelectorWindow();
|
|
|
|
|
if (selectorWindow.ShowDialog() == true)
|
|
|
|
|
{
|
|
|
|
|
selectedArea = selectorWindow.SelectedArea;
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
catch (Exception ex)
|
|
|
|
|
{
|
|
|
|
|
LogHelper.WriteLogToFile($"显示截图选择器失败: {ex.Message}", LogHelper.LogType.Error);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return selectedArea;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 截取指定屏幕区域
|
|
|
|
|
private Bitmap CaptureScreenArea(Rectangle area)
|
|
|
|
|
{
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
// 确保区域在有效范围内
|
|
|
|
|
var virtualScreen = SystemInformation.VirtualScreen;
|
|
|
|
|
|
|
|
|
|
// 调整区域边界,确保不超出屏幕范围
|
|
|
|
|
int x = Math.Max(area.X, virtualScreen.X);
|
|
|
|
|
int y = Math.Max(area.Y, virtualScreen.Y);
|
|
|
|
|
int right = Math.Min(area.Right, virtualScreen.Right);
|
|
|
|
|
int bottom = Math.Min(area.Bottom, virtualScreen.Bottom);
|
|
|
|
|
|
|
|
|
|
int width = Math.Max(1, right - x);
|
|
|
|
|
int height = Math.Max(1, bottom - y);
|
|
|
|
|
|
|
|
|
|
var bitmap = new Bitmap(width, height, PixelFormat.Format32bppArgb);
|
|
|
|
|
using (var graphics = Graphics.FromImage(bitmap))
|
|
|
|
|
{
|
|
|
|
|
// 设置高质量渲染
|
|
|
|
|
graphics.CompositingQuality = System.Drawing.Drawing2D.CompositingQuality.HighQuality;
|
|
|
|
|
graphics.InterpolationMode = System.Drawing.Drawing2D.InterpolationMode.HighQualityBicubic;
|
|
|
|
|
graphics.SmoothingMode = System.Drawing.Drawing2D.SmoothingMode.HighQuality;
|
|
|
|
|
|
|
|
|
|
// 截取屏幕区域
|
|
|
|
|
graphics.CopyFromScreen(x, y, 0, 0, new Size(width, height), CopyPixelOperation.SourceCopy);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
LogHelper.WriteLogToFile($"成功截取区域: X={x}, Y={y}, Width={width}, Height={height}", LogHelper.LogType.Info);
|
|
|
|
|
return bitmap;
|
|
|
|
|
}
|
|
|
|
|
catch (Exception ex)
|
|
|
|
|
{
|
|
|
|
|
LogHelper.WriteLogToFile($"截取屏幕区域失败: {ex.Message}", LogHelper.LogType.Error);
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2025-07-30 19:56:22 +08:00
|
|
|
// 自动粘贴截图到画布
|
|
|
|
|
private async Task AutoPasteScreenshot() {
|
|
|
|
|
try {
|
|
|
|
|
// 只在白板模式下自动粘贴
|
|
|
|
|
if (currentMode == 1) {
|
|
|
|
|
await PasteImageFromClipboard();
|
|
|
|
|
ShowNotification("截图已自动插入到画布");
|
|
|
|
|
} else {
|
|
|
|
|
ShowNotification("截图已复制到剪贴板,可在白板模式下粘贴");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
catch (Exception ex) {
|
|
|
|
|
ShowNotification($"自动粘贴截图失败: {ex.Message}");
|
|
|
|
|
LogHelper.WriteLogToFile($"自动粘贴截图失败: {ex.Message}", LogHelper.LogType.Error);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 将Bitmap复制到剪贴板
|
|
|
|
|
private void CopyBitmapToClipboard(Bitmap bitmap) {
|
|
|
|
|
try {
|
|
|
|
|
// 将System.Drawing.Bitmap转换为WPF BitmapSource
|
|
|
|
|
var bitmapSource = ConvertBitmapToBitmapSource(bitmap);
|
|
|
|
|
|
|
|
|
|
// 复制到剪贴板
|
|
|
|
|
Clipboard.SetImage(bitmapSource);
|
|
|
|
|
}
|
|
|
|
|
catch (Exception ex) {
|
|
|
|
|
ShowNotification($"复制到剪贴板失败: {ex.Message}");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 将System.Drawing.Bitmap转换为WPF BitmapSource
|
|
|
|
|
private BitmapSource ConvertBitmapToBitmapSource(Bitmap bitmap) {
|
|
|
|
|
using (var memory = new MemoryStream()) {
|
|
|
|
|
bitmap.Save(memory, ImageFormat.Png);
|
|
|
|
|
memory.Position = 0;
|
|
|
|
|
|
|
|
|
|
var bitmapImage = new BitmapImage();
|
|
|
|
|
bitmapImage.BeginInit();
|
|
|
|
|
bitmapImage.StreamSource = memory;
|
|
|
|
|
bitmapImage.CacheOption = BitmapCacheOption.OnLoad;
|
|
|
|
|
bitmapImage.EndInit();
|
|
|
|
|
bitmapImage.Freeze();
|
|
|
|
|
|
|
|
|
|
return bitmapImage;
|
|
|
|
|
}
|
|
|
|
|
}
|
2025-05-25 09:29:48 +08:00
|
|
|
}
|
2025-07-12 09:00:51 +08:00
|
|
|
}
|