PHP code example of games647 / minecraft-skin-renderer
1. Go to this page and download the library: Download games647/minecraft-skin-renderer 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/ */
games647 / minecraft-skin-renderer example snippets
//this is only used if you don't use composer
//load the skin from a file
$skinImage = imagecreatefrompng("cd6be915b261643fd13621ee4e99c9e541a551d80272687a3b56183b981fb9a.png");
//render the skin and make it 5 times bigger
$result = MinecraftSkins::skin($skinImage, 5);
//this part is for rendering the skin only
//tell the browser that we will send the raw image without HTML
header('Content-type: image/png');
imagepng($renderedSkin);
MinecraftSkins::head($skinImage, 5);
MinecraftSkins::skin($skinImage, 5);