Search code examples
.netimage-processingsteganography

Making .NET program that hides an image inside an image


I want to start a little pet project that will allow a user to pic an image and then hide that image within another image. Meaning that if you open the dummy-image that's all you'll see. But if you open the dummy-image with my software you'll see the actual image.

I've never done something like this so I'm pretty excited about getting away from the typical CRUD applications.

  1. What is this called? (I'm sure it exists, right?)
  2. Where can I find some nice theory behind it so I can make it robust.

Thanks so much for helping me yet again! :)

Edit:

So just to be clear on what my first step should be, I need to grab an image and convert it to a matrix of int[n,n] and process each cell individually finding the least binary value?


Solution

    1. It is called steganography.
    2. The Wikipedia page I linked to above includes lots of information about various techniques. You should be aware though that this is a form of "security by obscurity". If by "robust" you mean unbreakable then you are out of luck. It is not a substitute for proper encryption.