vote up 3 vote down star
1

I want to insert multiple invisible watermarks into my JPEG pictures through C# code. That means that I need a .NET library that does this work and not some external batch application.

Any suggestions?

flag
Do you mean "invisible" or "transparent"? – kgiannakakis Dec 29 '08 at 11:37
There are visible and invisible watermarks: riecks.com/security – splattne Dec 29 '08 at 11:40
I wrote "invisible", not "transparent"... – toncidamjanic Dec 29 '08 at 12:01

7 Answers

vote up 3 vote down

there is a port of image magick library to c# , and it can easily perform that operation for you...

link|flag
vote up 4 vote down

Storing "invisible" data in pictures is known as "steganography". A Google-search for "steganography .net" yields this article as its top hit - might prove useful.

link|flag
vote up 0 vote down

This article on devx.com contains a library (Stego) with source code you could use:

Keeping Secrets Secret: Steganography with .NET

After implementing that API, it's trivial to hide a message inside a .bmp file:

   ICoverFile cover = new BMPCoverFile("cover.bmp");
   cover.CreateStegoFile("stego.bmp","Hello","MyPwd");

Likewise, you can extract the message just as easily:

   IStegoFile stego = new 
      BMPStegoFile("stego.bmp","MyPwd");
   Console.WriteLine(stego.HiddenMessage);

UPDATE: Oh, sorry. Matt linked to the same article... didn't see that while writing this answer.

link|flag
vote up -3 vote down

Steganography is suitable for BMPs only and it's very volatile.

As I wrote in the first post, I need a library that works with JPEGs and that adds invisible watermarks into them.

link|flag
Steganography is applicable to many other formats besides BMP. – Lance Fisher Aug 29 at 7:45
vote up 1 vote down

What is the purpose of this? Is it to enable you to identify JPGs that have been taken from your site?

Response in comments: "Yes, I want to protect my pictures by using some robust and invisible watermark. Semi-visible site logo is not an option... "

The problem is precisely the one described in discussion of Steganography above, to do with the robustness of the image.

Any watermark like the one you describe can be used to identify a direct copy of the whole image, but with a jpg it seems to me that if it is even opened and saved again in an editor there is a chance of a change in compression affecting the watermark. Also if someone was to steal your image and do something more extensive with it- tinker with the colour balance, crop it a little and so on it seems unlikely that any invisible watermarking would be robust enough to survive and stay recogniseable.

Unfortunately I don't have a solution here, but the problem itself is far from trivial. It may be worth looking for other approaches to it, that you can perhaps use in parallel with watermarking ( custom metadata perhaps? preventing images being easily saved? ) to make it harder for your images to be stolen or to make them less valuable if they are...

link|flag
Yes, I want to protect my pictures by using some robust and invisible watermark. Semi-visible site logo is not an option... – toncidamjanic Dec 29 '08 at 11:57
this should be a comment, not an answer! – balexandre Dec 29 '08 at 11:57
There are a few invisible watermark solutions for JPEG format. Most of them modify the discrete cosine transformation values. As I don't have time to program it myself, I need a working solution out of the box. So, I'm looking for a suggestion, such as mentioned MagickNet library... – toncidamjanic Dec 29 '08 at 13:59
@toncidamjanic: be aware that the last time i checked (over a year ago) such solutions had been cracked – Steven A. Lowe Dec 29 '08 at 14:53
@steven: well, they may be cracked if you know what to look for. Most of watermarks are unnoticeable noise inserted into the picture which cannot be easily detected by brute force. – toncidamjanic Dec 29 '08 at 19:37
vote up 1 vote down

If it is a important application that you are working on, why not trying a paid service?

Digimarc and Signumtech can give you that kind of support using their SDK.

link|flag
Yes, a paid solution is also an option. I just need a well-done and well-tested library. – toncidamjanic Dec 29 '08 at 12:00
vote up 0 vote down

Look at CodeGlobe there is a good article on image watermarking in c#

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.