Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Adding an invisible image watermark in C#?

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?

like image 891
Tonči D. Avatar asked Dec 29 '08 11:12

Tonči D.


2 Answers

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.

like image 101
Matt Hamilton Avatar answered Nov 15 '22 13:11

Matt Hamilton


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

like image 4
reflog Avatar answered Nov 15 '22 14:11

reflog