Code Monkey home page Code Monkey logo

stepng's Introduction

stepng's People

Contributors

donno2048 avatar

Stargazers

 avatar  avatar

Watchers

 avatar  avatar

stepng's Issues

Steg breaks image

I wrote this steganographic algorithm to take an image and hide data in it:

output = [bin(i).replace('0b', '') for i in open('input.png', 'rb').read()]
bin_text = [bin(i).replace('0b', '').zfill(8) for i in bytearray(text + '\x00', 'utf8')]
for i in range(len(bin_text)):
    for j in range(8):
        output[index + 8 * i + j] = output[index + 8 * i + j][:-1] + bin_text[i][j]
open('output.png', 'wb').write(b''.join([int(i, 2).to_bytes(1, 'big') for i in output]))

Where text is the text hidden in the image, input.png is the input image and index is the starting index for the process,

The way it works is by hiding binary bits in the LSB's of the image.

The reading-back works perfectly but the writing creates very weird images.

For example, if I use this image:

To hide this message "Hi!" with starting index of 10000 I will get:

As you can see, the image is cropped after the chosen binary index, but why is that?

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.