-
Notifications
You must be signed in to change notification settings - Fork 0
/
ProgramOperations.cs
568 lines (512 loc) · 25.2 KB
/
ProgramOperations.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
using Ghostscript.NET;
using Ghostscript.NET.Processor;
using GUI;
using ImageMagick;
using OtherItems;
using PdfSharp.Drawing;
using PdfSharp.Pdf;
using PdfSharp.Pdf.IO;
using ProgramConfiguration;
using System;
using System.Collections.Generic;
using System.Drawing;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace Przetwarzanie_plików_PDF {
internal static class ProgramOperations {
internal static int _tempFileCounter;
/// <summary>
/// Zmiana pliku na PDF
/// </summary>
/// <param name="file">ściezka do pliku</param>
/// <returns>Zwraca ścieżkę do pliku pdf lub nowo utworzonego pliku tymczasowego</returns>
public static string ConvertFileToPdf(string file) {
string filePath = "";
string extension = ExtensionCheck(file);
switch (extension) {
case "PDF":
filePath = file;
break;
case "IMAGE":
filePath = ImageToPdf(file);
break;
case "WORD":
filePath = WordToPdf(file);
break;
case "EXCEL":
filePath = ExcelToPdf(file);
if (filePath == null) {
return null;
}
break;
default:
return null;
break;
}
return filePath;
}
public static string ConvertFileToPdf(DataGridViewRow row) {
string filePath = row.Cells[1].Value.ToString();
return ConvertFileToPdf(filePath);
}
/// <summary>
/// Połączenie plików z konsoli
/// </summary>
/// <param name="fileList">Lista ścieżek do plików które mają zostać dołączone</param>
/// <param name="outputFolder">Miejsce zapisu pliku</param>
/// <param name="coverDocument">Link do okładki jeżeli istnieje</param>
public static void MergeFiles(List<string> fileList, string outputFolder, string coverDocument) {
string extension = ExtensionCheck(coverDocument);
string filePath = ProgramOperations.ConvertFileToPdf(coverDocument);
if (filePath == null) {
PdfDocument pdfDocument = PdfReader.Open(filePath);
MergeFiles(fileList, outputFolder, pdfDocument);
} else {
Console.WriteLine("Błąd podczas zamiany okładki na PDF\nNie zostanie dodana.!");
}
}
/// <summary>
/// Dodanie numeru strony
/// </summary>
/// <param name="page">Obiekt strony</param>
/// <param name="number">Dodawany numer</param>
public static void AddNumber(PdfPage page, int number) {
//ustawienie obiektu czcionki
Font f = new Font(ProgramSettings.NumberFont, ProgramSettings.NumberHeight, FontStyle.Regular);
XFontStyle xStyle;
if (ProgramSettings.NumberBold && ProgramSettings.NumberItalic) {
xStyle = XFontStyle.BoldItalic;
} else if (ProgramSettings.NumberBold) {
xStyle = XFontStyle.Bold;
} else if (ProgramSettings.NumberItalic) {
xStyle = XFontStyle.Italic;
} else {
xStyle = XFontStyle.Regular;
}
XFont Xfont = new XFont(f.FontFamily.Name, ProgramSettings.NumberHeight, xStyle);
double prop = Convert.ToDouble((double)page.Width / page.Width.Millimeter);
int X, Y;
X = Convert.ToInt32(ProgramSettings.NumberPositionX * prop);
Y = Convert.ToInt32(ProgramSettings.NumberPositionY * prop);
if (page.Orientation == PdfSharp.PageOrientation.Portrait) {
if (!ProgramSettings.NumberAlignleft) {
X = Convert.ToInt32(page.Width - (double)X);
}
if (!ProgramSettings.NumberAlignUp) {
Y = Convert.ToInt32(page.Height - (double)Y);
}
} else {
if (ProgramSettings.NumberAlignleft) {
X = Convert.ToInt32(page.Width - (double)X);
}
if (ProgramSettings.NumberAlignUp) {
Y = Convert.ToInt32(page.Height - (double)Y);
}
}
XPoint p = new XPoint(X, Y);
XColor xc = XColor.FromArgb(
ProgramSettings.NumbersColor[0],
ProgramSettings.NumbersColor[1],
ProgramSettings.NumbersColor[2]);
XBrush br = new XSolidBrush(xc);
XGraphics graphics = XGraphics.FromPdfPage(page, XGraphicsPdfPageOptions.Append);
graphics.DrawString(number.ToString(), Xfont, br, p);
graphics.Dispose();
}
/// <summary>
/// Dodanie znaku wodnego do strony
/// </summary>
/// <param name="page"></param>
public static void AddWatemark(PdfPage page) {
//ustawienie obiektu czcionki
Font f = new Font(ProgramSettings.WatermarkFont, ProgramSettings.WatermarkHeight, FontStyle.Regular);
XFontStyle xStyle;
if (ProgramSettings.WatermarkBold && ProgramSettings.WatermarkItalic) {
xStyle = XFontStyle.BoldItalic;
} else if (ProgramSettings.WatermarkBold) {
xStyle = XFontStyle.Bold;
} else if (ProgramSettings.WatermarkItalic) {
xStyle = XFontStyle.Italic;
} else {
xStyle = XFontStyle.Regular;
}
XFont Xfont = new XFont(f.FontFamily.Name, ProgramSettings.WatermarkHeight, xStyle);
double prop = Convert.ToDouble((double)page.Width / page.Width.Millimeter);
int X, Y;
X = Convert.ToInt32(ProgramSettings.WatermarkPositionX * prop);
Y = Convert.ToInt32(ProgramSettings.WatermarkPositionY * prop);
XPoint p = new XPoint(X, Y);
XColor xc = XColor.FromArgb(
ProgramSettings.WatermarkColor[0],
ProgramSettings.WatermarkColor[1],
ProgramSettings.WatermarkColor[2]);
var format = new XStringFormat();
format.Alignment = XStringAlignment.Near;
format.LineAlignment = XLineAlignment.Near;
XBrush br = new XSolidBrush(xc);
XGraphics graphics = XGraphics.FromPdfPage(page, XGraphicsPdfPageOptions.Append);
graphics.DrawString(ProgramSettings.WatermarkText, Xfont, br, p, format);
graphics.Dispose();
}
/// <summary>
/// Połączenie plików z konsoli
/// </summary>
/// <param name="fileList">Lista ścieżek do plików które mają zostać dołączone</param>
/// <param name="outputFolder">Miejsce zapisu pliku</param>
/// <param name="coverDocument">Obiekt PDF okładki</param>
public static void MergeFiles(List<string> fileList, string outputFile, PdfDocument coverDocument = null) {
//Rozpocznij łączenie w osobnym procesie
System.Text.Encoding.RegisterProvider(System.Text.CodePagesEncodingProvider.Instance);
long FileCount, CurrentFileCounter, PageCount, CurrentPageCounter;
long pages = 0;
FileCount = fileList.Count;
CurrentFileCounter = 1;
string filePath = "";
string currentFile = "";
int PageNumerator = ProgramSettings.StartNumber;
int Pagefrom = ProgramSettings.StartPage;
//Ustaw Wartość paska postępu
try {
//Stwórz nowy dokument i przypisz do niego okładkę
PdfDocument outputDocument = new PdfDocument();
if (coverDocument != null) {
string name = Path.Combine(ProgramSettings.TEMP_FOLDER, _tempFileCounter.ToString() + "_okladka");
coverDocument.Save(name);
PdfDocument cover = PdfReader.Open(name, PdfDocumentOpenMode.Import);
outputDocument.AddPage(cover.Pages[0]);
if (ProgramSettings.watermark && ProgramSettings.WatemarkOnCover) {
ProgramOperations.AddWatemark(outputDocument.Pages[0]);
}
if (ProgramSettings.pageNumeration && ProgramSettings.CoverNumeation) {
ProgramOperations.AddNumber(outputDocument.Pages[0], PageNumerator);
PageNumerator++;
}
CurrentFileCounter++;
pages++;
}
//Dodaj do pliku wynikowego wszystkie elementy z listy plików
foreach (string item in fileList) {
currentFile = Path.GetFileName(item);
//Aktualizacja informacji o postępnie
Console.WriteLine("Łączenie pliku nr " + CurrentFileCounter.ToString());
string extension = ExtensionCheck(item);
//Sprawdzenie pliku i w razie konieczności konwersja na PDF
filePath = ProgramOperations.ConvertFileToPdf(item);
if (filePath == null) {
Console.WriteLine($"Bład podczas zamiany pliku {currentFile} na PDF");
continue;
}
//Otworzenie dołączanego pliku
PdfDocument mergingDoc = PdfReader.Open(filePath, PdfDocumentOpenMode.Import);
//Aktualizacja informacji
PageCount = mergingDoc.PageCount;
Console.WriteLine("Dzołączanie pliku: " + currentFile);
CurrentPageCounter = 0;
Console.WriteLine("Dołączono stron: ");
Console.WriteLine(" ");
//Dodawanie stron z pliku do pliku wynikowego
foreach (PdfPage page in mergingDoc.Pages) {
ClearCurrentConsoleLine();
outputDocument.Pages.Add(page);
if (ProgramSettings.watermark) {
ProgramOperations.AddWatemark(outputDocument.Pages[(int)pages]);
}
if (ProgramSettings.pageNumeration && (pages + 1) >= Pagefrom) {
ProgramOperations.AddNumber(outputDocument.Pages[(int)pages], PageNumerator);
PageNumerator++;
}
CurrentPageCounter++;
Console.Clear();
Console.WriteLine($"Dołączono stronę {CurrentPageCounter} z {PageCount}");
Console.WriteLine($"Łączna ilość stron {pages}");
pages++;
}
//Zamykanie pliku dołączanego
mergingDoc.Close();
mergingDoc.Dispose();
CurrentFileCounter++;
}
//Jeżeli użytkownik wybrał kompresję wykonaj ją, w innym przypadku zapisz plik wynikowy
if (ProgramSettings.compression) {
//Zapisz obecny plik wynikowy do folderu z plikami czasowymi i zamknij go
string PdfFileName = _tempFileCounter.ToString() + "_ImageTemp.pdf";
string tempPath = Path.Combine(ProgramSettings.TEMP_FOLDER, PdfFileName);
_tempFileCounter++;
outputDocument.Save(tempPath);
outputDocument.Close();
outputDocument.Dispose();
//Rozpocznij optymalizację
OptimalizePDFFile(tempPath, outputFile);
Console.WriteLine("Operacja pomyślna");
Console.ReadLine();
} else {
//Zapisz plik bez optymalizacji
outputDocument.Save(outputFile);
outputDocument.Close();
outputDocument.Dispose();
Console.WriteLine("Operacja pomyślna");
Console.ReadLine();
}
} catch (Exception ex) {
//W przypadku wystąpienia błędu poinformuj o nim użytkownika
if (ex.Message.Contains("protected with an encryption")) {
Console.WriteLine(
$"Plik: {currentFile} zawiera szyfrowanie nieobsługiwane przez ten program!" +
$"\nProszę usuń hasło z pliku i spróbuj ponownie!");
} else {
Console.WriteLine(
$"Podczas próby dołączenia pliku {currentFile} wystąpił nieznany błąd\n {ex.Message}");
}
}
//Usuń pliki tymczasowe
try {
ProgramOperations.ClearTempFile();
} catch (Exception) {
Console.WriteLine("Błąd podczas usuwania plików czasowych!\nUsuń je ręcznie z folderu 'temp'");
}
}
/// <summary>
/// Sprawdź czy podany plik jest obsługiwany przez program
/// </summary>
/// <param name="filePath">Ścieżka do pliku</param>
public static string ExtensionCheck(string filePath) {
string extension = Path.GetExtension(filePath);
if (extension == ".pdf")
return "PDF";
else if (extension == ".jpg" || extension == ".bmp" || extension == ".png" || extension == ".tiff")
return "IMAGE";
else if ((extension == ".doc" || extension == ".docx" || extension == ".docm") && ProgramSettings.isWordInstall)
return "WORD";
else if ((extension == ".xls" || extension == ".xlsx" || extension == ".xls" || extension == ".xlsm") && ProgramSettings.isExcelInstall)
return "EXCEL";
else
return null;
}
/// <summary>
/// Kompresja pliku PDF według wskazań uzykowanika
/// </summary>
/// <param name="fileInput">Ścieżka do chwilowo zapisanego pliku</param>
/// <param name="fileOutput">Ścieżka do pliku docelowego</param>
public static void OptimalizePDFFile(string fileInput, string fileOutput, MainWindow mw = null) {
//Ustaw widoczność grupy informującej o procesie kompresji
if (mw != null) {
mw.GsProcessingStart();
}
if (ProgramSettings.isWindowedApplication) {
Console.WriteLine("Trwa optymalizacja pliku...");
}
//Wykorzystując GhostScript dokonaj kompresji pliku uwzględniając wybrane parametry
GhostscriptVersionInfo ver = new GhostscriptVersionInfo(ProgramSettings.GS_DLL_FILE);
GhostscriptPipedOutput gsPipedOutput = new GhostscriptPipedOutput();
string outputPipeHandle = "%handle%" + int.Parse(gsPipedOutput.ClientHandle).ToString("X2");
using (GhostscriptProcessor processor = new GhostscriptProcessor(ver)) {
List<string> switches = new List<string>();
switches.Add("-empty");
switches.Add("-dQUIET");
switches.Add("-dSAFER");
switches.Add("-dBATCH");
switches.Add("-dNOPAUSE");
switches.Add("-dNOPROMPT");
switches.Add("-sDEVICE=pdfwrite");
switches.Add("-dPDFSETTINGS=/" + ProgramSettings.PdfPrinterSettings);
switches.Add("-dEmbedAllFonts=true");
switches.Add("-dSubsetFonts=true");
switches.Add("-dColorImageDownsampleType=/Bicubic");
switches.Add("-dColorImageResolution=" + ProgramSettings.ImageResolution.ToString());
switches.Add("-dGrayImageDownsampleType=/Bicubic");
switches.Add("-dGrayImageResolution=" + ProgramSettings.ImageResolution.ToString());
switches.Add("-dMonoImageDownsampleType=/Bicubic");
switches.Add("-dMonoImageResolution=" + ProgramSettings.ImageResolution.ToString());
switches.Add("-o" + outputPipeHandle);
switches.Add("-q");
switches.Add("-f");
switches.Add(fileInput);
try {
processor.StartProcessing(switches.ToArray(), null);
byte[] gsOutpuData = gsPipedOutput.Data;
File.WriteAllBytes(fileOutput, gsOutpuData);
if (mw != null) {
mw.GsSuccessProcessed();
}
} catch (Exception ex) {
if (mw != null) {
mw.GsErrorDiuringProcessing(ex.Message);
}
}
}
}
/// <summary>
/// Uzyskaj obraz z pliku pdf
/// </summary>
/// <param name="fileName"></param>
/// <returns></returns>
public static async Task<Image> GetImageFromFile(string fileName, int pageNumber = 0) {
try {
string ghDir = ProgramSettings.GS_DLL_DIR;
MagickNET.SetGhostscriptDirectory(ghDir);
var settings = new MagickReadSettings();
settings.Density = new Density(300, 300);
settings.FrameIndex = pageNumber;
settings.FrameCount = 1;
Image IIM = null;
MemoryStream ms = new MemoryStream();
using (var img = new MagickImageCollection()) {
img.Read(fileName, settings);
img.Write(ms, MagickFormat.Jpg);
//img.Write(ms,MagickFormat.Png);
return System.Drawing.Image.FromStream(ms);
}
} catch (Exception ex) {
MessageBox.Show(ex.Message);
return null;
}
}
/// <summary>
/// Usuń pliki tymczasowe
/// </summary>
public static void ClearTempFile() {
string temp = Path.Combine(ProgramSettings.ProgramPath, "temp");
if (Directory.Exists(temp)) {
DirectoryInfo di = new DirectoryInfo(temp);
di.Attributes = FileAttributes.Normal;
foreach (FileInfo fi in di.GetFiles()) {
File.SetAttributes(fi.FullName, FileAttributes.Normal);
File.Delete(fi.FullName);
}
}
}
/// <summary>
/// Przekonwertuj pliki graficzne na plik pdf
/// Przekonwertowane pliki zostaną chwilowo zapisane w folderze 'temp'
/// </summary>
///
private static string ImageToPdf(string v) {
PdfDocument doc = new PdfDocument();
doc.Pages.Add(new PdfPage());
XGraphics xgr = XGraphics.FromPdfPage(doc.Pages[0]);
XImage img = XImage.FromFile(v);
xgr.DrawImage(img, 0, 0);
string PdfFileName = _tempFileCounter.ToString() + "_ImageTemp.pdf";
string PdfFilepath = Path.Combine(ProgramSettings.TEMP_FOLDER, PdfFileName);
doc.Save(PdfFilepath);
doc.Close();
doc.Dispose();
_tempFileCounter++;
return PdfFilepath;
}
/// <summary>
/// Przekonwertuj pliki Word na plik pdf
/// Przekonwertowane pliki zostaną chwilowo zapisane w folderze 'temp'
/// </summary>
///
private static string WordToPdf(string v) {
string PdfFileName = _tempFileCounter.ToString() + "_OfficeTemp.pdf";
string PdfFilepath = Path.Combine(ProgramSettings.TEMP_FOLDER, PdfFileName);
Microsoft.Office.Interop.Word.Application word = new Microsoft.Office.Interop.Word.Application();
word.Visible = false;
word.ScreenUpdating = false;
var doc = word.Documents.Open(v);
doc.Activate();
doc.SaveAs2(PdfFilepath, Microsoft.Office.Interop.Word.WdSaveFormat.wdFormatPDF);
doc.Close();
doc = null;
word.Quit();
word = null;
return PdfFilepath;
}
/// <summary>
/// Przekonwertuj plik Excela na pdf
/// </summary>
/// <param name="v"> Lokalizacja pliku excela</param>
private static string ExcelToPdf(string v) {
string PdfFileName = _tempFileCounter.ToString() + "_OfficeTemp.pdf";
string PdfFilepath = Path.Combine(ProgramSettings.TEMP_FOLDER, PdfFileName);
Microsoft.Office.Interop.Excel.Application excel = new Microsoft.Office.Interop.Excel.Application();
excel.Visible = false;
excel.ScreenUpdating = false;
var wb = excel.Workbooks.Open(v, 0, true);
wb.Activate();
var wsCount = wb.Worksheets.Count;
if (wsCount > 1) {
List<string> sheets = new List<string>();
foreach (Microsoft.Office.Interop.Excel.Worksheet sht in wb.Worksheets) {
sheets.Add(sht.Name);
}
string res;
//Wybierz arkusz do wydrukowania w okienku
if (ProgramSettings.isWindowedApplication) {
string title = "Wybierz arkusz dla pliku: " + Path.GetFileName(v);
InputBox inbx = new InputBox(title, sheets.ToArray());
res = inbx.GetResults();
if (inbx.InputBoxResults == InputBoxResults.OK) {
Microsoft.Office.Interop.Excel.Worksheet ws = (Microsoft.Office.Interop.Excel.Worksheet)wb.Worksheets[res];
ws.Activate();
ws.ExportAsFixedFormat(Microsoft.Office.Interop.Excel.XlFixedFormatType.xlTypePDF, PdfFilepath);
wb.Close();
return PdfFilepath;
} else if (inbx.InputBoxResults == InputBoxResults.PrintAll) {
wb.ExportAsFixedFormat(Microsoft.Office.Interop.Excel.XlFixedFormatType.xlTypePDF, PdfFilepath);
wb.Close();
return PdfFilepath;
} else {
wb.Close();
return null;
}
//Wybierz arkusz do wydrukowania w konsoli
} else {
Console.WriteLine("Wybierz numer arkusza do dołączenia:");
string options = "1. Drukuj wszystkie";
int counter = 2;
foreach (string s in sheets) {
options += $"{counter.ToString()}. {s}";
}
Console.WriteLine(options);
int sResults;
//Próba zamiany odczytanej wartości na numer
try {
sResults = Convert.ToInt32(Console.ReadLine());
} catch (Exception) {
Console.WriteLine("Wprowadzona wartość musi być liczbą! Plik zostanie pominięty.");
return null;
}
//Sprawdzenie czy wartośc mieści sie w zakresie
if (sResults <= 0 || sResults > sheets.Count + 1) {
Console.WriteLine("Wprowadzona wartość musi mieścić sie w zakrsie! Plik zostanie pominięty.");
return null;
}
//Operacja dla wybrania opcji druku wszystkich arkuszy
if (sResults == 1) {
wb.ExportAsFixedFormat(Microsoft.Office.Interop.Excel.XlFixedFormatType.xlTypePDF, PdfFilepath);
wb.Close();
return PdfFilepath;
//Operacja dla wybiru wydruku konkretnego arkusza
} else {
res = sheets[sResults - 2];
Microsoft.Office.Interop.Excel.Worksheet ws = (Microsoft.Office.Interop.Excel.Worksheet)wb.Worksheets[res];
ws.Activate();
ws.ExportAsFixedFormat(Microsoft.Office.Interop.Excel.XlFixedFormatType.xlTypePDF, PdfFilepath);
wb.Close();
return PdfFilepath;
}
}
}
// W shoroszycie jest tylko jeden arkusz
wb.ExportAsFixedFormat(Microsoft.Office.Interop.Excel.XlFixedFormatType.xlTypePDF, PdfFilepath);
wb.Close();
wb = null;
excel.Quit();
excel = null;
return PdfFilepath;
}
//Wyczysczczenie linii
public static void ClearCurrentConsoleLine() {
int currentLineCursor = Console.CursorTop;
Console.SetCursorPosition(0, Console.CursorTop);
Console.Write(new string(' ', Console.WindowWidth));
Console.SetCursorPosition(0, currentLineCursor);
}
}
}