kzykhys/steganography

Simple implementation of Steganography (Hiding a hidden message within an image)

dev-master 2014-01-24 17:50 UTC

This package is not auto-updated.

Last update: 2024-04-22 23:58:46 UTC


README

Latest Unstable Version Build Status Coverage Status SensioLabsInsight

Simple PHP implementation of Steganography (Hiding a hidden message within an image)

Requirements

  • PHP5.4+

Installation

Update your composer.json and run composer update

{
    "require": {
        "kzykhys/steganography": "dev-master"
    }
}

Usage

Put your message into an image

<?php

require __DIR__ . '/vendor/autoload.php';

$processor = new KzykHys\Steganography\Processor();
$image = $processor->encode('/path/to/image.jpg', 'Message to hide'); // jpg|png|gif

// Save image to file
$image->write('/path/to/image.png'); // png only

// Or outout image to stdout
$image->render();

Extract message from an image

<?php

require __DIR__ . '/vendor/autoload.php';

$processor = new KzykHys\Steganography\Processor();
$message = $processor->decode('/path/to/image.png');

echo $message; // "Message to hide"

License

The MIT License

Author

Kazuyuki Hayashi (@kzykhys)