Thumbhash PHP is a PHP library for generating unique, human-readable identifiers from image files. It is inspired by Evan Wallace's Thumbhash algorithm and provides a PHP implementation of the algorithm.
Thumbhash is a very compact representation of a placeholder for an image. Store it inline with your data and show it while the real image is loading for a smoother loading experience. It's similar to BlurHash but with some advantages
You can install Thumbhash PHP using Composer:
composer require jerrywham/thumbhash
To generate a thumbhash for an image file, you can use the Thumbhash\Thumbhash class:
Example to show a thumbhash image from a local file
use Thumbhash\Thumbhash;
$Th = new Thumbhash($url);
$thumbBase64 = rtrim(base64_encode(implode(array_map("chr", $Th->getHash() ))), '=');
$data_url = $Th->toDataURL($Th->getHash() );
echo '<img style="width: 200px; height: auto; border: 1px solid black;" width="'. $Th->getWidth() .'" height="'. $Th->getHeight() .'" src="'. $data_url .'" alt="">';
Thumbhash PHP was created by Eser DENIZ. Modify by Cyril MAGUIRE.
It is inspired by the javascript version of Evan Wallace's Thumbhash algorithm.
Thumbhash PHP is licensed under the MIT License. See LICENSE for more information.