vote up 4 vote down star

How can I write some information inside a photo file like jpg or gif without destroying the image? and of course without showing it on the photo since the whole idea is to send information in the file of photo undetected by anyone (to provide security/privacy to some extent)!

flag

1  
Please don't tag compound words. "information" alone is completely useless tag for this question; and the technical term for this is "steganography." Please don't remove that. en.wikipedia.org/wiki/Steganography – Mehrdad Afshari Aug 1 at 8:27
Thanks for the hint, I didn't know that before! :) – MAK Aug 1 at 8:30

6 Answers

vote up 0 vote down check

You can store some information in image metadata. In fact that's how man digital cameras 'tag' the photos their making (camera model, date and time, GPS coords etc.).

This data format is called EXIF (Exchangeable Image File Format). There are a lot of examples how to use it in programming languages. Here's the example in Java.

If you want to prevent users from reading this data you can encrypt them somehow, but they will always be able to remove it from your picture (by opening in Photoshop and using Save As for example).

link|flag
So "Save As" in PhotoShop would remove any metadata? Do you know a software that would allow editing it? – MAK Aug 1 at 8:47
1  
I think photoshop will rewrite this data with it's own data. I think there are plenty EXIF editors, for example I found freeware Quick EXIF Editor photo-freeware.net/quick-exif-editor.php/… – RaYell Aug 1 at 8:56
Great! Anything for Mac? – MAK Aug 1 at 9:10
This answer (while good) doesnt relate to the question. Exif doesnt hide information. Exif is metadata, not steganography. – Guillaume Aug 1 at 10:55
"Guillaume" is there other place in the photo file where you can hide data in? – MAK Aug 2 at 6:09
show 1 more comment
vote up 0 vote down

check this class as well for info: http://www.phpclasses.org/browse/package/3312.html

link|flag
Nice php class! – MAK Aug 1 at 8:42
vote up 0 vote down

You can put additional information in the header of the image as meta-data.

Exiv2 is a command line tool / C++ library to do just that (with various file formats).

link|flag
vote up 4 vote down

Here is a way to hide an info in jpegs.

This process is called Steganography - hiding (as opposite to encrypting) something where no one expects it to be there.

Here is an example in .net.

Can't find anymore - but somewhere was even better ready to use app written in .NET which could hide information through multiple media files (including audio/video) and even guard it with one or multiple keys.

link|flag
vote up 3 vote down

Steghide is the software you need.

Steghide is a steganography program that is able to hide data in various kinds of image- and audio-files.

You can also check a list of steganography tools here.

link|flag
vote up 1 vote down

You can concatenate a gif and a zip (the information you want to hide) into one file. Gifs are read from the start of the file, while zips are read from the end of the file.

To create such a file in linux:

$ cat file1.gif >> outfile
$ cat file2.zip >> outfile

The resulting file should have the size of file1.gif and file2.zip together and should be openable by any gif viewer and zip file handler.

link|flag
Probably the easiest way to hide information :) But how do you retrieve it? – Burkhard Aug 2 at 13:57
as i said, you can open the resulting file (outfile) with any standard archiver that can handle zip files and extract the information. – crazymaik Aug 2 at 18:11
Ups. I only read the first part. I'll try the zip part later. – Burkhard Aug 2 at 20:42

Your Answer

Get an OpenID
or

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