anjana venkat
anjana venkat

Reputation: 21

Using steganography on wavelet compressed image

Can someone help in finding the source code for hiding an image(wavelet compressed image) with an image. I'm able to obtain source code only for hiding a text with an image.

Upvotes: 1

Views: 921

Answers (1)

Peter G.
Peter G.

Reputation: 15124

What about first encoding the wavelet compressed image as text (e.g. using base64) and then hiding that? Pseudocode:

function steg_image_into_image( carrier_image, compressed_image )
{
    return steg_text_into_image( carrier_image, base64_encode(compressed_image) )
}

Upvotes: 3

Related Questions