PHP code example of allejo / bzflag-rendering.php
1. Go to this page and download the library: Download allejo/bzflag-rendering.php 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/ */
allejo / bzflag-rendering.php example snippets
// use allejo\bzflag\graphics\PNG\Radar\WorldRenderer;
use allejo\bzflag\graphics\SVG\Radar\WorldRenderer;
use allejo\bzflag\replays\Replay;
$replay = new Replay('official-match.rec');
$world = $replay->getHeader()->getWorldDatabase();
$renderer = new WorldRenderer($world);
echo $renderer->writeToFile("thumbnail.svg");
bash
composer