-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
96 lines (88 loc) · 3.87 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Encoder and Decoder Documentation</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>Encoder and Decoder Documentation</h1>
<nav>
<a href="https://github.com/COMMANDO2406/TextToPng">GitHub </a>
<a href="https://github.com/COMMANDO2406/TextToPng/releases">Releases </a>
<a href="https://github.com/COMMANDO2406/TextToPng/releases/latest">Download</a>
</nav>
</header>
<main>
<section>
<h2>About</h2>
<p>
This is for people who don't have python installed, if you have python installed go to <a href="./pyinstalled.html">this page</a>.
This documentation provides instructions and usage examples for the Encoder and Decoder apps.
The Encoder app converts a given string to binary representation and generates an image.
The Decoder app reverses this process to convert the binary image back to the original string.
</p>
</section>
<section>
<h2>Encoder</h2>
<p>
To use the Encoder app, download the latest release of the executable installer from the
<a href="https://github.com/COMMANDO2406/TextToPng/releases">Releases</a> page.
</p>
<h3>Installation Steps</h3>
<ol>
<li>Download the installer file from the latest releases page</li>
<img src="Screenshots/DownloadEncoder.png" alt="Encoder Step 1">
<li>Run the installer then click more info and then run anyway</li>
<img src="Screenshots/Run Anyway.png" alt="Encoder Step 2">
<li>Go through the installer</li>
<img src="Screenshots/Installer.png" alt="Encoder Step 3">
<li>Navigate to the app folde and run the main app</li>
<img src="Screenshots/runmain.png" alt="Encoder Step 3">
</ol>
<h3>Usage:</h3>
<pre>Enter Text you would like to be converted</pre>
<img src="Screenshots/app.png" alt="Encoder Step 3">
<p>Output:</p>
<ul>
<li>Output for the above text: (rotated)</li>
<img src="Screenshots/output.png" alt="Encoder Step 3" style="
max-width: 500000px;
max-height: 500000px;
display: block;
margin: 20px auto;
">
<li>A binary representation of the input string.</li>
<li>An image representing the binary string in the same folder.</li>
</ul>
</section>
<section>
<h2>Decoder</h2>
<p>
To use the Decoder app, download the latest release of the executable installer from the
<a href="https://github.com/COMMANDO2406/TextToPng/releases/latest">Releases</a> page using the same method as mentioned in the Encoder section.
</p>
<p>Usage:</p>
<pre>Shift the output image to the same folder as the decoder and then run it to get the encoded message</pre>
<p>Output:</p>
<ul>
<li>The decoded string extracted from the image.</li>
</ul>
</section>
</main>
<div class="progress"></div>
<div class="cube-wrap">
<div class="cube">
<div class="side top"></div>
<div class="side bottom"></div>
<div class="side front"></div>
<div class="side back"></div>
<div class="side left"></div>
<div class="side right"></div>
</div>
</div>
<script src="index.js"></script>
</body>
</html>