A PHP implementation of JSON-G.
Via Composer
$ composer require pxgamer/json-g
Use the JsonG::toImageBlob()
or JsonG::toJson()
to convert between a blob and JSON-G.
Converting an image via POST
use RaidAndFade\JsonG\JsonG;
$base64 = base64_decode($_POST['in']);
$image = new Imagick();
$image->readimageblob($base64);
$json = JsonG::toJson($image);
header("Content-Type: text/json");
echo $json;
Converting a JSON-G string to image via POST
use RaidAndFade\JsonG\JsonG;
$jsonArray = json_decode($_POST['in'], true);
$image = JsonG::toImageBlob($jsonArray);
header("Content-Type: image/png");
echo $image;
Please see CHANGELOG for more information on what has changed recently.
composer test
Please see CONTRIBUTING for details.
If you discover any security related issues, please email [email protected] instead of using the issue tracker.
The MIT License (MIT). Please see License File for more information.
You're free to use this package, but if it makes it to your production environment you are required to buy the world a tree.
It’s now common knowledge that one of the best tools to tackle the climate crisis and keep our temperatures from rising above 1.5C is to plant trees. If you support this package and contribute to the Treeware forest you’ll be creating employment for local families and restoring wildlife habitats.
You can buy trees here.
Read more about Treeware at treeware.earth.