-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProgram.cs
118 lines (96 loc) · 4.23 KB
/
Program.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
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Reflection;
using System.Threading;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace Shorthander
{
static class Program
{
/// <summary>
/// Usado para ler e escrever imagens do disco
/// </summary>
static ImgManager ImgManager { get; } = new ImgManager();
static List<string> Screen { get; set; } = new List<string>();
/// <summary>
/// O ponto de entrada principal para o aplicativo.
/// </summary>
[STAThread]
static void Main(params string[] args)
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
ConsoleManager.DefaultColor = ConsoleManager.Colors["&F0"];
Screen.AddRange(StaticData.HEADER);
do
{
try
{
ConsoleManager.Write(Screen);
var result = ConsoleManager.Prompt(" Digite ou arraste a url da imagem");
Console.WriteLine();
if (!File.Exists(result))
{
ConsoleManager.Error(" Arquivo não encontrado!");
goto Reset;
}
var img = ImgManager.ReadImage(result);
var attempt = SteganographyHelper.ExtractText(img);
if (attempt.StartsWith(StaticData.MAGIC))
{
using (var saveDialog = new SaveFileDialog())
{
var fileName = new string(attempt.Skip(StaticData.MAGIC.Length).TakeWhile(x => x != ')').Skip(1).ToArray());
saveDialog.FileName = fileName;
saveDialog.Filter = "Text Files|*.txt";
saveDialog.InitialDirectory = Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments);
if (saveDialog.ShowDialog() == DialogResult.OK)
{
var toSave = new string(attempt.Skip(StaticData.MAGIC.Length + fileName.Length + 2).ToArray());
File.WriteAllText(saveDialog.FileName, toSave);
ConsoleManager.Info("Arquivo salvo com sucesso!");
goto Reset;
}
}
}
result = ConsoleManager.Prompt(" Digite ou arraste um arquivo de texto");
Console.WriteLine();
if (!File.Exists(result))
{
ConsoleManager.Error(" Arquivo não encontrado!");
goto Reset;
}
if (Path.GetExtension(result) != ".txt")
{
ConsoleManager.Error(" Formato de arquivo não suportado, tente usar um .txt!");
goto Reset;
}
var text = StaticData.MAGIC + $"({Path.GetFileName(result)})" + File.ReadAllText(result);
using (var saveDialog = new SaveFileDialog())
{
saveDialog.Filter = "Image Files|*.png; *.jpg; *.bmp";
saveDialog.InitialDirectory = Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments);
if (saveDialog.ShowDialog() == DialogResult.OK)
{
var imgResult = SteganographyHelper.EmbedText(text, img);
ImgManager.WriteImage(imgResult, saveDialog.FileName);
ConsoleManager.Info("Arquivo salvo com sucesso!");
goto Reset;
}
}
}
catch (FileFormatException ex)
{
ConsoleManager.Error(" " + ex.Message);
goto Reset;
}
Console.ReadKey();
Reset:
Console.Clear();
} while (true);
}
}
}