-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathForm1.cs
836 lines (735 loc) · 28.9 KB
/
Form1.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
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
using PdfSharp.Drawing;
using PdfSharp.Pdf;
using Process.NET;
using Process.NET.Memory;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Diagnostics;
using System.Drawing;
using System.Drawing.Imaging;
using System.IO;
using System.Linq;
using System.Runtime.InteropServices;
using System.Security;
using System.Text;
using System.Text.RegularExpressions;
using System.Threading;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace pdz助手
{
public partial class Form1 : Form
{
public int ssReaderPid = -1;
public IntPtr ssReaderHandle = IntPtr.Zero;
public string 当前用户名 = string.Empty;
public bool 是否最大化 = false;
public bool png目录是否存在 = false;
public bool pdf目录是否存在 = false;
public string 缓冲器路径 = string.Empty;
public int 持续间隔 = 0;
public int 上一次bmp数量 = 0;
public bool 是否正在一键转换 = false;
public bool 是否处于阅读模式 = false;
[DllImport("User32.dll")]
public static extern Int32 SendMessage(int hWnd, int Msg, int wParam, IntPtr lParam);
[DllImport("user32.dll", SetLastError = true)]
static extern int GetWindowLong(IntPtr hWnd, int nIndex);
[DllImport("user32.dll")]
static extern IntPtr GetForegroundWindow();
[DllImport("user32.dll")]
[return: MarshalAs(UnmanagedType.Bool)]
static extern bool ShowWindow(IntPtr hWnd, int nCmdShow);
[DllImport("user32.dll")]
private static extern bool ShowWindowAsync(IntPtr hWnd, int nCmdShow);
[SuppressUnmanagedCodeSecurity]
internal static class SafeNativeMethods
{
[DllImport("shlwapi.dll", CharSet = CharSet.Unicode)]
public static extern int StrCmpLogicalW(string psz1, string psz2);
}
public sealed class 对文件按名称自然序排序 : IComparer<FileInfo>
{
public int Compare(FileInfo a, FileInfo b)
{
return SafeNativeMethods.StrCmpLogicalW(a.Name, b.Name);
}
}
public Form1()
{
//
InitializeComponent();
//
Control.CheckForIllegalCrossThreadCalls = false;
}
public void 自动获取ssReaderPid()
{
//
var processes = System.Diagnostics.Process.GetProcessesByName("ssReader");
//
if (processes.Length == 0)
{
//
label_ssReader状态.Text = "关";
label_ssReader状态.ForeColor = Color.Red;
//
ssReaderPid = 0;
ssReaderHandle = IntPtr.Zero;
//
groupBox_主面板.Enabled = false;
}
else
{
foreach (var p in processes)
{
//
label_ssReader状态.Text = "开";
label_ssReader状态.ForeColor = Color.Green;
//
ssReaderPid = p.Id;
ssReaderHandle = p.MainWindowHandle;
//
if (!是否正在一键转换)
{
groupBox_主面板.Enabled = true;
}
}
}
}
public void 自动获取ssReader窗口状态()
{
//是否存在
if (ssReaderHandle == IntPtr.Zero)
{
//
radioButton_不存在.Checked = true;
//
radioButton_前台.Checked = false;
radioButton_后台.Checked = false;
//
return;
}
//前台、后台
if (GetForegroundWindow() == ssReaderHandle)
{
radioButton_前台.Checked = true;
}
else
{
radioButton_后台.Checked = true;
}
//最大化、最小化、常规
int WS_MAXIMIZE = 0x01000000;
int WS_MINIMIZE = 0x20000000;
int WS_VISIBLE = 0x10000000;
int GWL_STYLE = -16;
int thisStyle = GetWindowLong(ssReaderHandle, GWL_STYLE);
if ((thisStyle & WS_MAXIMIZE) == WS_MAXIMIZE)
{
//
radioButton_最大化.Checked = true;
//
是否最大化 = true;
//
return;
}
if ((thisStyle & WS_MINIMIZE) == WS_MINIMIZE)
{
//
radioButton_最小化.Checked = true;
//
是否最大化 = false;
//
button_一键转换.Enabled = false;
//
label_气泡.Text = "[*]pdz助手运行中,请使ssReader窗口最大化.(若受[气泡提示]干扰,移动鼠标到别处即可)";
label_气泡.ForeColor = Color.Red;
气泡控制器.Enabled = true;
//
return;
}
if ((thisStyle & WS_VISIBLE) == WS_VISIBLE)
{
//
radioButton_常规.Checked = true;
//
是否最大化 = false;
//
button_一键转换.Enabled = false;
//
label_气泡.Text = "[*]pdz助手运行中,请使ssReader窗口最大化.(若受[气泡提示]干扰,移动鼠标到别处即可)";
label_气泡.ForeColor = Color.Red;
气泡控制器.Enabled = true;
//
return;
}
}
public void 自动切换到双页模式()
{
//x轴系数
double x轴系数 = (double)170 / 1920;
//y轴系数
double y轴系数 = (double)75 / 1080;
//[双叶]按钮位置
int x_双叶 = (int)(Screen.PrimaryScreen.Bounds.Width * x轴系数);
int y_双叶 = (int)(Screen.PrimaryScreen.Bounds.Height * y轴系数);
//点击[双叶]按钮
int WM_LBUTTONDOWN = 0x0201;
int WM_LBUTTONUP = 0x0202;
SendMessage((int)ssReaderHandle, WM_LBUTTONDOWN, 0x00000001, (IntPtr)((y_双叶 << 16) | (x_双叶 & 0xffff)));
SendMessage((int)ssReaderHandle, WM_LBUTTONUP, 0x00000000, (IntPtr)((y_双叶 << 16) | (x_双叶 & 0xffff)));
}
public void 自动切换到连续模式()
{
//x轴系数
double x轴系数 = (double)140 / 1920;
//y轴系数
double y轴系数 = (double)75 / 1080;
//[连续]按钮位置
int x_连续 = (int)(Screen.PrimaryScreen.Bounds.Width * x轴系数);
int y_连续 = (int)(Screen.PrimaryScreen.Bounds.Height * y轴系数);
//点击[连续]按钮
int WM_LBUTTONDOWN = 0x0201;
int WM_LBUTTONUP = 0x0202;
SendMessage((int)ssReaderHandle, WM_LBUTTONDOWN, 0x00000001, (IntPtr)((y_连续 << 16) | (x_连续 & 0xffff)));
SendMessage((int)ssReaderHandle, WM_LBUTTONUP, 0x00000000, (IntPtr)((y_连续 << 16) | (x_连续 & 0xffff)));
}
public void 自动批量BitmapToPng()
{
//序号
int Order = 1;
//批处理
DirectoryInfo info = new DirectoryInfo(缓冲器路径);
FileInfo[] files = info.GetFiles("*.bmp", SearchOption.AllDirectories).OrderBy(n => Regex.Replace(n.Name,@"\d+",p => p.Value.PadLeft(5,'0'))).ToArray();//按名称排序读取bmp
foreach (FileInfo file in files)
{
//获取此bmp路径
string thisFile =file.FullName;
//读取此bmp到内存
Bitmap thisbmp = new Bitmap(thisFile);
//设置新png路径
string newName = textBox_png存储目录.Text + "\\" + Order.ToString() + ".png";
//转换此bmp到png
thisbmp.Save(newName, ImageFormat.Png);
//序号自增
Order++;
}
//
//MessageBox.Show("png转换完成.");
进度与提示("png转换完成,正在合成pdf...", 60, Color.Black);
}
public void 自动批量PngInPdf()
{
//
string png存储目录 = textBox_png存储目录.Text;
string pdf存储目录 = Path.GetDirectoryName(textBox_pdf存储目录.Text);
//
递归遍历png目录(png存储目录,png存储目录,pdf存储目录);
//
进度与提示("pdf生成成功.", 100 ,Color.Green);
//清理png
if (checkBox_不存储png.Checked == true)
{
清空目录下的文件(textBox_png存储目录.Text);
}
}
private void 递归遍历png目录(String png存储目录, String png当前所在目录, String pdf存储目录)
{
//判断png当前所在目录是否含有子目录,有则递归遍历,为每一个子目录中的文件合成一个pdf
if (Directory.GetDirectories(png当前所在目录).Length > 0)
{
//
String[] 子目录 = Directory.GetDirectories(png当前所在目录);
//
foreach (String i in 子目录)
{
递归遍历png目录(png存储目录, i, pdf存储目录);
}
}
else
{
对单个目录PngInPdf(png当前所在目录, pdf存储目录 + png当前所在目录.Substring(png存储目录.Length));
}
}
private bool 对单个目录PngInPdf(String path, String Destination)
{
//
DirectoryInfo folder = new DirectoryInfo(path);
//
FileInfo[] images = folder.GetFiles("*.png");
//
if (images.Length > 0)
{
//对png进行排序
Array.Sort<FileInfo>(images, new 对文件按名称自然序排序());
//
PdfDocument doc = new PdfDocument();
//设置pdf布局为单页布局
doc.PageLayout = PdfPageLayout.SinglePage;
//
foreach (FileInfo f in images)
{
//
doc.Pages.Add(new PdfPage());
//
XGraphics xgr = XGraphics.FromPdfPage(doc.Pages[doc.Pages.Count - 1]);
//
Image testimage = Image.FromFile(f.Directory.ToString() + Path.DirectorySeparatorChar + f.Name);
//
if (Array.IndexOf(testimage.PropertyIdList, 274) > -1)
{
//
var orientation = (int)testimage.GetPropertyItem(274).Value[0];
//
switch (orientation)
{
case 1:
// No rotation required.
break;
case 2:
testimage.RotateFlip(RotateFlipType.RotateNoneFlipX);
break;
case 3:
testimage.RotateFlip(RotateFlipType.Rotate180FlipNone);
break;
case 4:
testimage.RotateFlip(RotateFlipType.Rotate180FlipX);
break;
case 5:
testimage.RotateFlip(RotateFlipType.Rotate90FlipX);
break;
case 6:
testimage.RotateFlip(RotateFlipType.Rotate90FlipNone);
break;
case 7:
testimage.RotateFlip(RotateFlipType.Rotate270FlipX);
break;
case 8:
testimage.RotateFlip(RotateFlipType.Rotate270FlipNone);
break;
}
//This EXIF data is now invalid and should be removed.
testimage.RemovePropertyItem(274);
}
//
XImage img = XImage.FromGdiPlusImage(testimage);
//
doc.Pages[doc.Pages.Count - 1].Width = img.PointWidth;
doc.Pages[doc.Pages.Count - 1].Height = img.PointHeight;
//
xgr.DrawImage(img, 0, 0);
//
xgr.Dispose();
testimage.Dispose();
img.Dispose();
}
//
string foldername = Path.GetFileNameWithoutExtension(textBox_pdf存储目录.Text);
//
if (!Directory.Exists(Destination))
{
Directory.CreateDirectory(Destination);
}
//
doc.Save(Destination + Path.DirectorySeparatorChar + foldername + ".pdf");
doc.Close();
doc.Dispose();
//
return true;
}
else
{
return false;
}
}
public void 进度与提示(string 提示内容,int 进度值,Color 颜色)
{
//
label_气泡.Text = "[*]" + 提示内容;
label_气泡.ForeColor = 颜色;
//
progressBar_进度条.Value = 进度值;
//
label_进度.Text = 进度值.ToString() + "%";
}
public void 自动读取页总数()
{
//
var process = System.Diagnostics.Process.GetProcessesByName("ssReader").FirstOrDefault();
if (process != null)
{
try
{
//
ProcessSharp _process = new ProcessSharp(process, MemoryType.Remote);
//
var myModule = _process.ModuleFactory["ssReader.exe"].BaseAddress;
//读取tab
var address_tab = _process.Memory.GetAddress(myModule + 0x00598C54, new[] { 0x0, 0x130, 0x3C, 0x8C, 0x84, 0x44, 0x598 });
var value_tab = _process.Memory.Read<int>(address_tab);
if (value_tab != 0)
{
//
是否处于阅读模式 = true;
//读取前言页
var address1 = _process.Memory.GetAddress(myModule + 0x00598C54, new[] { 0x0, 0x164, 0x654, 0x390 });
var value1 = _process.Memory.Read<int>(address1);
//读取目录页
var address2 = _process.Memory.GetAddress(myModule + 0x00598C54, new[] { 0x0, 0x164, 0x654, 0x394 });
var value2 = _process.Memory.Read<int>(address2);
//读取正文页
var address3 = _process.Memory.GetAddress(myModule + 0x00598C54, new[] { 0x0, 0x164, 0x654, 0x398 });
var value3 = _process.Memory.Read<int>(address3);
//
int 页总数 = value1 + value2 + value3;
//
textBox_总页数.Text = 页总数.ToString();
}
else
{
//
是否处于阅读模式 = false;
//
进度与提示("检测到ssReader未处于阅读模式(若有误,请重新启动ssReader即可)", 0, Color.Red);
气泡控制器.Enabled = true;
}
////读取阅读比例
//var address4 = _process.Memory.GetAddress(myModule + 0x00598C54, new[] { 0x0, 0x164, 0x658, 0x30 });
//var value4 = _process.Memory.Read<float>(address4);
////
//float 阅读比例 = value4;
////
//阅读比例 = float.Parse(阅读比例.ToString("0.00"));
////
//if (阅读比例 > 0.05f && 阅读比例 < 1.00f)
//{
// //
// 是否处于阅读模式 = true;
//}
//else
//{
// //
// 是否处于阅读模式 = false;
// //
// 进度与提示("ssReader未处于阅读模式", 0, Color.Red);
// 气泡控制器.Enabled = true;
//}
//_process.Memory.Write(address, value * 1000); //写内存示例
}
catch (Exception e){
Console.WriteLine(e);
}
}
}
private void 进程扫描器_Tick(object sender, EventArgs e)
{
//
自动获取ssReaderPid();
//
自动获取ssReader窗口状态();
//
自动读取页总数();
//
if (是否最大化 == true && png目录是否存在 == true && pdf目录是否存在 == true && textBox_总页数.Text!=string.Empty && textBox_总页数.Text != "0" && 是否处于阅读模式 == true)
{
button_一键转换.Enabled = true;
}
else
{
button_一键转换.Enabled = false;
}
//
if (Directory.Exists(缓冲器路径))
{
button_查看缓存器.Enabled = true;
}
else
{
button_查看缓存器.Enabled = false;
}
}
private void button1_Click_1(object sender, EventArgs e)
{
//
}
public void 自动设置目录()
{
//设置png存储目录
string png存储目录 = @"C:\Users\" + 当前用户名 + @"\Desktop\" + "png存储目录";
//创建文件夹
Directory.CreateDirectory(png存储目录);
//
textBox_png存储目录.Text = png存储目录;
//设置pdf存储目录
string pdf存储目录 = @"C:\Users\" + 当前用户名 + @"\Desktop\1.pdf";
//
textBox_pdf存储目录.Text = pdf存储目录;
}
private void Form1_Load(object sender, EventArgs e)
{
//
当前用户名 = Environment.UserName;
//
label_当前系统用户名.Text = 当前用户名;
缓冲器路径 = @"C:\Users\" + 当前用户名 + @"\AppData\Local\Temp\buffer";
//
自动设置目录();
//
textBox_png存储目录_TextChanged(sender, e);
textBox_pdf存储目录_TextChanged(sender, e);
}
private void button_查看缓存器_Click(object sender, EventArgs e)
{
//
string addr = 缓冲器路径;
//
if (Directory.Exists(addr))
{
System.Diagnostics.Process.Start(addr);
}
else
{
MessageBox.Show("缓冲器未创建,请先在ssReader中打开一本书进入阅读模式。");
}
}
private void 气泡控制器_Tick(object sender, EventArgs e)
{
//
label_气泡.Text = "[*]";
label_气泡.ForeColor = Color.Black;
//
气泡控制器.Enabled = false;
}
private void button_一键转换_Click(object sender, EventArgs e)
{
//切换阅读模式
//自动切换到连续模式();
//自动切换到双页模式();
//
if (textBox_png存储目录.Text == Path.GetDirectoryName(textBox_pdf存储目录.Text))
{
//
MessageBox.Show("png存储目录不能与pdf存储目录相同");
//
return;
}
//
是否正在一键转换 = true;
//
最大化控制器.Enabled = true;
groupBox_主面板.Enabled = false;
//
进度与提示("现在锁定ssReader最大化,文档正在转换中...", 5, Color.Black);
//清空png存储目录
清空目录下的文件(textBox_png存储目录.Text);
//清空缓冲器
清空目录下的文件(缓冲器路径);
////释放bmp
//if (ssReaderHandle != IntPtr.Zero)
//{
// //
// 释放检测器.Enabled = true;
//}
//释放bmp
if (ssReaderHandle != IntPtr.Zero)
{
//
new Thread(() =>
{
//
Thread.CurrentThread.IsBackground = false;
//按下Home
Key a = new Key(Messaging.VKeys.KEY_HOME);
a.PressBackground(ssReaderHandle);
//
bool 强行合成 = false;
//
while (true)
{
//按下PgDown
a = new Key(Messaging.VKeys.KEY_NEXT);
a.PressBackground(ssReaderHandle);
//
Thread.Sleep(1);
//统计bmp数量
int BmpCount = Directory.GetFiles(缓冲器路径, "*.bmp", SearchOption.AllDirectories).Length;
if (BmpCount >= Int32.Parse(textBox_总页数.Text) || 强行合成 == true)
{
//
进度与提示("bmp完成释放,正在转换为png...", 20, Color.Black);
//
自动批量BitmapToPng();
//
自动批量PngInPdf();
//
break;
}
//释放bmp时间控制
if (上一次bmp数量 == BmpCount)
{
持续间隔 += 1;
}
else
{
持续间隔 = 0;
}
//超时检测
if (持续间隔 >= 1000)
{
//
进度与提示("bmp释放失败,请检查 ①是否进入[阅读模式] ②是否有显示[此页无效]的损坏页", 0, Color.Red);
//
int 缺少页 = Int32.Parse(textBox_总页数.Text) - BmpCount;
DialogResult dialogResult = MessageBox.Show("此pdz共有" + textBox_总页数.Text + "页,"
+"现共释放了" + BmpCount.ToString() + "页,"
+"缺少" + 缺少页.ToString() + "页,"
+"是否继续合成pdf?", "提示:", MessageBoxButtons.YesNo);
if (dialogResult == DialogResult.Yes)
{
强行合成 = true;
}
else if (dialogResult == DialogResult.No)
{
break;
}
}
//
上一次bmp数量 = BmpCount;
}
//
持续间隔 = 0;
上一次bmp数量 = 0;
//
是否正在一键转换 = false;
最大化控制器.Enabled = false;
groupBox_主面板.Enabled = true;
}).Start();
}
}
private void textBox_png存储目录_TextChanged(object sender, EventArgs e)
{
if (!Directory.Exists(textBox_png存储目录.Text))
{
//
png目录是否存在 = false;
//
进度与提示("设置的[png存储目录]不存在,请重新设置.", 0, Color.Red);
}
else
{
//
进度与提示("", 0, Color.Black);
//
png目录是否存在 = true;
}
}
private void checkBox_不存储png_CheckedChanged(object sender, EventArgs e)
{
if (checkBox_不存储png.Checked == true)
{
//禁用设置
textBox_png存储目录.Enabled = false;
//指定临时目录路径
string 临时目录 = Path.GetTempPath() + @"png临时存储目录";
//创建文件夹
Directory.CreateDirectory(临时目录);
//更改设置
textBox_png存储目录.Text = 临时目录;
}
else
{
textBox_png存储目录.Enabled = true;
}
}
private void 最大化控制器_Tick(object sender, EventArgs e)
{
//确保最大化
if (!是否最大化 && ssReaderHandle != IntPtr.Zero)
{
//int SW_SHOWNORMAL = 1;
//int SW_SHOWMINIMIZED = 2;
//int SW_SHOWMAXIMIZED = 3;
ShowWindowAsync(ssReaderHandle, 3);
}
}
public void 清空目录下的文件(string 目录)
{
//
DirectoryInfo di = new DirectoryInfo(目录);
//
foreach (FileInfo file in di.GetFiles())
{
file.Delete();
}
}
private void textBox_pdf存储目录_TextChanged(object sender, EventArgs e)
{
//
if (textBox_pdf存储目录.Text == string.Empty || textBox_pdf存储目录.Text == null)
{
//
pdf目录是否存在 = false;
//
进度与提示("设置的[pdf存储目录]不存在,请重新设置.", 0, Color.Red);
//
return;
}
//检查目录
string pdf存储目录 = Path.GetDirectoryName(textBox_pdf存储目录.Text);
//
if (!Directory.Exists(pdf存储目录))
{
//
pdf目录是否存在 = false;
//
进度与提示("设置的[pdf存储目录]不存在,请重新设置.", 0, Color.Red);
//
return;
}
else
{
//
pdf目录是否存在 = true;
//
进度与提示("", 0, Color.Black);
}
//检查文件格式
if (Path.GetExtension(textBox_pdf存储目录.Text) != ".pdf")
{
//
pdf目录是否存在 = false;
//
进度与提示("设置的[pdf文件名]不正确,请重新设置.", 0, Color.Red);
//
return;
}
else
{
//
pdf目录是否存在 = true;
//
进度与提示("", 0, Color.Black);
}
}
private void textBox_总页数_KeyPress(object sender, KeyPressEventArgs e)
{
if (!char.IsControl(e.KeyChar) && !char.IsDigit(e.KeyChar) &&(e.KeyChar != '.'))
{
e.Handled = true;
}
}
}
public static class Extensions
{
public static IntPtr GetAddress(this IMemory memory, IntPtr intPtr, int[] chain)
{
var result = memory.Read<IntPtr>(intPtr);
int lastIndex = chain.Length - 1;
for (int i = 0; i < lastIndex; i++)
result = memory.Read<IntPtr>(result + chain[i]);
return result + chain[lastIndex];
}
}
}