PHP code example of iaretedd / pixelizer
1. Go to this page and download the library: Download iaretedd/pixelizer library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
iaretedd / pixelizer example snippets
$pixelizer = new Pixelizer\Pixelizer();
$pixelizer->setData(file_get_contents('file_to_encode.exe'));
$pixelizer->encode('encoded.png');
$pixelizer = new Pixelizer\Pixelizer();
$pixelizer->loadImage('encoded.png');
$pixelizer->decode('original_file.exe');