Skip to content

Commit c21fc01

Browse files
authored
Update README.md
1 parent 4078af8 commit c21fc01

1 file changed

Lines changed: 69 additions & 1 deletion

File tree

README.md

Lines changed: 69 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,70 @@
1+
<img src="repo-files/icon-128.png" align="right" />
2+
13
# img-stego
2-
An example application for blind image steganography with a GUI in C#
4+
5+
[![language](https://img.shields.io/badge/language-csharp-purple.svg)](https://github.com/ktekeli/img-stego)
6+
[![Licence](https://img.shields.io/github/license/ktekeli/img-stego.svg)](https://github.com/ktekeli/img-stego/blob/master/LICENSE)
7+
[![Release](https://img.shields.io/badge/release-v1.0-blue.svg)](https://github.com/ktekeli/img-stego)
8+
[![HitCount](http://hits.dwyl.com/{ktekeli}/{img-stego}.svg?style=flat)](https://github.com/ktekeli/img-stego)
9+
10+
> A complete desktop application to hide any kind of data inside bitmap images.
11+
12+
## Description
13+
14+
This program is a simple example for blind image [steganograpy](https://en.wikipedia.org/wiki/Steganography) using Least Significant Bit ([LSB](https://en.wikipedia.org/wiki/Bit_numbering#Least_significant_bit)) substitution. It lets the user hide any kind of data into 24-bit bitmap images on a GUI.
15+
16+
<p align="center"> <img src="repo-files/app.gif"> </p>
17+
18+
## About
19+
20+
This desktop app was developed as a part of my MSc Seminar in 2015, and it is shared on github to be helpful for other users.
21+
22+
It is possible to hide either text messages or any kind of files by switching the option with the radio buttons in the application.
23+
24+
Necessary information about hidden data such as text length (for text messages), size of file, file name, length of file name (for files) is embedded within the data. This is done by using the same LSB algorithm by replacing image pixels in reverse.
25+
26+
Two predefined string codes "tt1" and "tb1" are embedded into the image to recognize the type of hidden data in decoding step. This operation is to check if there is any information in the stego file, and if so to decide which kind of data exists in it. "tt1" is encoded at the end of the cover image if hidden data is a text message, or "tb1" is used if the hidden data is a file which contains its original file name to be used in decoding. Extraction method is chosen automatically using these string codes in order to avoid confusions.
27+
28+
## Requirements
29+
30+
This program was developed in Visual Studio 2015 with C# language under Windows 7. So, it needs .NET framework.
31+
32+
## Usage
33+
34+
This project is uploaded as a form application, and there is a compiled version in the repository for the [test](https://github.com/ktekeli/img-stego/tree/master/test).
35+
36+
**Embedding Text**
37+
38+
> Embedding>Embed Text>Browse>Choose Image>Type Message>Embed>Save As
39+
40+
**Embedding File**
41+
42+
> Embedding>Embed File>Browse>Choose Image>Open File>Embed>Save As
43+
44+
**Extraction**
45+
46+
> Extraction>Browse>Choose Stego Image>Extract
47+
48+
It is an open-source project. Users can edit [the solution](https://github.com/ktekeli/img-stego/blob/master/src/IMG-Stego.sln) file in Visual Studio as needed and recompile.
49+
50+
## Bugs
51+
52+
Application works properly for 24-bit bitmap images. I have not added a conditional statement to check for 24-bit. It can be done if needed. Source code was written in Turkish, and it has been translated for github recently. So, there can be some left-overs in the code. I was a newbie in C#back then, so there may be shorter solutions or other bugs in the program. Feel free to report an issue or pull request for possible improvements.
53+
54+
## License
55+
56+
[MIT License](https://github.com/ktekeli/img-stego/blob/master/LICENSE) | &copy; 2015 Kadir Tekeli
57+
58+
## Contribution
59+
60+
Contributions are always welcome!
61+
62+
1. Fork it!
63+
2. Create your feature branch: (`git checkout -b my-new-feature`)
64+
3. Commit your changes: (`git commit -am 'Add some feature'`)
65+
4. Push to the branch: (`git push origin my-new-feature`)
66+
5. Submit a pull request.
67+
68+
## See Also
69+
70+
A matlab library with several basic [audio steganography algorithms](https://github.com/ktekeli/audio-steganography-algorithms).

0 commit comments

Comments
 (0)