Click here to Skip to main content
Click here to Skip to main content

Visual Image Cryptography Generator

By , 26 Dec 2011
 

Image 1

codeproject0.png

Image 2

codeproject1.png

After combining two images

codeproject.png

Introduction

Merry Christmas! Before writing this article, I wrote an article about Visual cryptography. But it's in text base, that means when you enter text and it will generate a visual encrypted images for you.

Recently, I received an email for if it can do in image base, select image and return encrypted images. And answer is of cause.

Background

Visual cryptography was introduced by Naor and Shamir at EUROCRYPT '94. They asked the following intriguing question: is it possible to devise a secret sharing scheme in which an image can be reconstructed "visually" by superimposing two shares? Each share would consist of a transparency, made up of black and white pixels. (Note that it would be more accurate to say "transparent" rather than "white".) Examination of one share should reveal no information about the image.

For more details, please read this.

Using the Code

The main difference between Image and Text is that you can control the text background in Black and White but Image contains Color, so first what we need is to convert the color into Black and White:

private Bitmap ConvertToBackAndWhite(Bitmap source)
{
    int sourceWidth = source.Width;
    int sourceHeight = source.Height;
 
    Bitmap result = new Bitmap(sourceWidth, sourceHeight);
    double mid = 255d * (1d / 2d);
 
    for (int x = 0; x < sourceWidth; x++)
    {
        for (int y = 0; y < sourceHeight; y++)
        {
            Color c = source.GetPixel(x, y);
            c = (Average(c.R, c.G, c.B) > mid) ? Color.Empty : Color.Black;
            result.SetPixel(x, y, c);
        }
    }
 
    return result;
}

After converting the image to black and white, the other is the same as text encryption. And I'm not describing the details here.

Enjoy the article and Christmas Holidays.

Cheers!

History

  • 26th December, 2011: Initial post

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Jacky Yiu
Architect MouxIdea Limited
Hong Kong Hong Kong
1981 Born in Hong Kong
1996 Become Badminton Trainer
1997 Hong Kong's Return to China
1998 The Year After Hong Kong's Return to China
1999 The Year Before Millennium
2000 First touch of programming - ASP(guestbook)
2001 Outstanding Student Award - Computing Department
2002 Xcellence Developer Awards - Best Graphical Focused Application(Game) Award
2003 Microsoft MVP - .NET
2004 Be lost in Technology
2005 Microsoft MVP - C#
2006 Microsoft MVP - C#
2007 Getting Marry - Cheers~
2008 Microsoft MVP - C#
2009 Microsoft MVP - C#
2010 Microsoft MVP - C#
2011 Start my software hut
 
http://www.csharpfans.com


http://www.bugyiu.com


http://www.mouxidea.com

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
QuestionPlease helpmemberkoznov12314-Jan-12 19:22 
GeneralNice to read the articlemembersudhansu_k12326-Dec-11 22:40 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Permalink | Advertise | Privacy | Mobile
Web02 | 2.6.130617.1 | Last Updated 26 Dec 2011
Article Copyright 2011 by Jacky Yiu
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid