forked from finos/ScreenSnippet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
SnippingWindow.xaml.cs
182 lines (149 loc) · 6.03 KB
/
SnippingWindow.xaml.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
//Licensed to the Apache Software Foundation(ASF) under one
//or more contributor license agreements.See the NOTICE file
//distributed with this work for additional information
//regarding copyright ownership.The ASF licenses this file
//to you under the Apache License, Version 2.0 (the
//"License"); you may not use this file except in compliance
//with the License. You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
//Unless required by applicable law or agreed to in writing,
//software distributed under the License is distributed on an
//"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
//KIND, either express or implied. See the License for the
//specific language governing permissions and limitations
//under the License.
using System.IO;
using System.Linq;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Controls.Primitives;
using System.Windows.Forms;
using System.Windows.Ink;
using System.Windows.Media;
using System.Windows.Media.Imaging;
namespace Paragon.Plugins.ScreenCapture
{
/// <summary>
/// Interaction logic for SnippingWindow.xaml
/// </summary>
public partial class SnippingWindow : Window
{
private readonly DrawingAttributes[] highlightColors;
private readonly DrawingAttributes[] penColors;
private DrawingAttributes selectedHighlightColor;
private DrawingAttributes selectedPenColor;
private string outputFilename;
// outputFileName: write output screen capture to given file name
public SnippingWindow(string outputFilename)
{
InitializeComponent();
this.outputFilename = outputFilename;
penColors = ((DrawingAttributes[]) FindResource("PenColors"));
highlightColors = ((DrawingAttributes[]) FindResource("HighlightColors"));
selectedPenColor = penColors.First();
selectedHighlightColor = highlightColors.First();
Loaded += OnLoaded;
}
private void OnLoaded(object sender, RoutedEventArgs e)
{
var result = SnippingTool.TakeSnippet();
if (result == null)
{
Close();
return;
}
WindowState = WindowState.Normal;
var rect = result.SelectedRectangle;
// reposition the window so there's a neat effect of showing
// the screenshot edit window in place of the selected region
var top = rect.Top - 80 + SystemInformation.VirtualScreen.Top;
var left = rect.Left - 80 + SystemInformation.VirtualScreen.Left;
rect.Y = rect.Top - 80 + SystemInformation.VirtualScreen.Top;
rect.X = rect.Left - 80 + SystemInformation.VirtualScreen.Left;
var screen = Screen.GetBounds(rect);
Top = top < screen.Top ? screen.Top : top;
Left = left < screen.Left ? screen.Left : left;
var image = result.Image;
ImageBrush.ImageSource = result.ImageToBitmapSource();
var width = 400;
// adjust window size to be slightly larger than
// the image so nothing is cropped
if (image.Width > width && image.Width > Width)
{
width = image.Width + 100;
}
var height = 300;
if (image.Height > height && image.Height > Height)
{
height = image.Height + 100;
}
Width = width;
Height = height;
// adjust canvas that is hosting the image to match the image size
InkCanvas.Width = image.Width;
InkCanvas.Height = image.Height;
}
private void OnColorClick(object sender, RoutedEventArgs e)
{
var menuItem = (System.Windows.Controls.MenuItem) sender;
var color = (DrawingAttributes) menuItem.Header;
InkCanvas.DefaultDrawingAttributes = color;
if (penColors.Contains(color))
{
selectedPenColor = color;
}
else
{
selectedHighlightColor = color;
}
}
private void OnPenClick(object sender, RoutedEventArgs e)
{
InkCanvas.EditingMode = InkCanvasEditingMode.Ink;
InkCanvas.DefaultDrawingAttributes = selectedPenColor;
ShowContextMenu(sender as ToggleButton, PenContextMenu);
}
private void OnHighlightClick(object sender, RoutedEventArgs e)
{
InkCanvas.EditingMode = InkCanvasEditingMode.Ink;
InkCanvas.DefaultDrawingAttributes = selectedHighlightColor;
ShowContextMenu(sender as ToggleButton, HighlightContextMenu);
}
private void OnEraseClick(object sender, RoutedEventArgs e)
{
InkCanvas.EditingMode = InkCanvasEditingMode.EraseByStroke;
}
private void OnDoneClick(object sender, RoutedEventArgs e)
{
try
{
var renderTargetBitmap = new RenderTargetBitmap(
(int)InkCanvas.Width,
(int)InkCanvas.Height,
96d,
96d,
PixelFormats.Default);
renderTargetBitmap.Render(InkCanvas);
using (var fileStream = new FileStream(outputFilename, FileMode.Create))
{
var jpegEncoder = new JpegBitmapEncoder();
jpegEncoder.QualityLevel = 70;
jpegEncoder.Frames.Add(BitmapFrame.Create(renderTargetBitmap));
jpegEncoder.Save(fileStream);
}
}
finally
{
Close();
}
}
private void ShowContextMenu(ToggleButton sender, System.Windows.Controls.ContextMenu contextMenu)
{
contextMenu.Placement = PlacementMode.Bottom;
contextMenu.PlacementTarget = sender;
contextMenu.IsOpen = true;
}
}
}