Click here to Skip to main content
Licence CPOL
First Posted 22 Oct 2007
Views 26,800
Downloads 1,422
Bookmarked 34 times

Visual Cryptography Generator

By | 22 Oct 2007 | Article
Visual cryptography is a cryptographic technique which allows visual information (pictures, text, etc.) to be encrypted in such a way that the decryption can be performed by the human visual system, without the aid of computers.

Image 1

Screenshot - codeproject0.png

Image 2

Screenshot - codeproject1.png

After Combining 2 Images

Screenshot - codeproject.png

Introduction

I should say "Thank you" to tectures, I write this article because of his idea.

Before writing this article, I've written an article about alpha in PNG to make a magic card for friends and tectures asked me what's the different between my program and Visual cryptography. Actually, in that article I didn't think about encrypting anything inside the image, it just did a simple track and made your friends happy.

And I found that no one had written this before, so I've made a simple program to represent this concept.

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

Two constant variables that need to be defined are as follows:

private Size IMAGE_SIZE = new Size(437, 106); //Image size
private const int GENERATE_IMAGE_COUNT = 2; //How many images you would like to generate

The following function generates the shared image:

private Bitmap[] GenerateImage(string inputText)
{
    Bitmap finalImage = new Bitmap(IMAGE_SIZE.Width, IMAGE_SIZE.Height);
    Bitmap tempImage = new Bitmap(IMAGE_SIZE.Width / 2, IMAGE_SIZE.Height);
    Bitmap[] image = new Bitmap[GENERATE_IMAGE_COUNT];
    
    Random rand = new Random();
    SolidBrush brush = new SolidBrush(Color.Black);
    Point mid = new Point(IMAGE_SIZE.Width / 2, IMAGE_SIZE.Height / 2);
    Graphics g = Graphics.FromImage(finalImage);
    Graphics gtemp = Graphics.FromImage(tempImage);

    //set text format
    StringFormat sf = new StringFormat();
    sf.Alignment = StringAlignment.Center;
    sf.LineAlignment = StringAlignment.Center;
    Font font = new Font("Times New Roman", 48);

    Color fontColor;
    g.DrawString(inputText, font, brush, mid, sf);
    gtemp.DrawImage(finalImage, 0, 0, tempImage.Width, tempImage.Height);
    for (int i = 0; i < image.Length; i++)
    {
        image[i] = new Bitmap(IMAGE_SIZE.Width, IMAGE_SIZE.Height);
    }
    
    int index = -1;
    int width = tempImage.Width;
    int height = tempImage.Height;
    for (int x = 0; x < width; x += 1)
    {
        for (int y = 0; y < height; y += 1)
        {
            fontColor = tempImage.GetPixel(x, y);
            index = rand.Next(image.Length);

            //Check if the color empty
            if (fontColor.Name == Color.Empty.Name)
            {
                for (int i = 0; i < image.Length; i++)
                {
                    if (index == 0)
                    {
                        image[i].SetPixel(x * 2, y, Color.Black);
                        image[i].SetPixel(x * 2 + 1, y, Color.Empty);
                    }
                    else
                    {
                        image[i].SetPixel(x * 2, y, Color.Empty);
                        image[i].SetPixel(x * 2 + 1, y, Color.Black);
                    }
                }
            }
            else
            {
                for (int i = 0; i < image.Length; i++)
                {
                    if ((index + i) % image.Length == 0)
                    {
                        image[i].SetPixel(x * 2, y, Color.Black);
                        image[i].SetPixel(x * 2 + 1, y, Color.Empty);
                    }
                    else
                    {
                        image[i].SetPixel(x * 2, y, Color.Empty);
                        image[i].SetPixel(x * 2 + 1, y, Color.Black);
                    }
                }
            }
        }
    }

    //Clean Up
    brush.Dispose();
    tempImage.Dispose();
    finalImage.Dispose();

    return image;
}

Points of Interest

They demonstrated a visual secret sharing scheme, where an image was broken up into n shares so that only someone with all n shares could decrypt the image, while any n-1 shares revealed no information about the original image. Each share was printed on a separate transparency, and decryption was performed by overlaying the shares. When all n shares were overlayed, the original image would appear.

History

  • 23rd October, 2007: 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

Member

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

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralMy vote of 5 PinmemberVinamaruthi0:19 20 Dec '11  
GeneralI like this. Somehow it got less votes. But it is a good one. My 5 PinmemberAlbinAbel19:59 16 Mar '11  
GeneralGreat Idea PinmemberBigdeak3:01 10 Jun '10  
GeneralGreat Minds think alike... PinmemberKeith Vinson12:09 29 Oct '07  
GeneralRe: Great Minds think alike... PinmemberJacky Yiu17:00 1 Nov '07  
GeneralRe: Great Minds think alike... PinmemberKeith Vinson4:50 2 Nov '07  
GeneralRe: Great Minds think alike... PinmemberJacky Yiu4:57 6 Nov '07  
GeneralHere's another idea Pinmemberleppie5:05 23 Oct '07  
GeneralRe: Here's another idea PinmemberJacky Yiu14:59 23 Oct '07  
GeneralVery Interesting Idea Pinmembermerlin9814:07 23 Oct '07  
GeneralRe: Very Interesting Idea PinmemberJacky Yiu4:55 23 Oct '07  

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

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web01 | 2.5.120517.1 | Last Updated 23 Oct 2007
Article Copyright 2007 by Jacky Yiu
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid