Skip to content

Instantly share code, notes, and snippets.

View robske110's full-sized avatar

Tim (robske_110) robske110

  • Germany
View GitHub Profile
@robske110
robske110 / PngToPlayer.php
Last active August 13, 2020 22:59 — forked from jasonw4331/PngToPlayer.php
Set a player's skin in PMMP
<?php
$path = 'your/path/to/skin.png';
$img = @imagecreatefrompng($path);
$bytes = '';
$l = (int) @getimagesize($path)[1];
for ($y = 0; $y < $l; $y++) {
for ($x = 0; $x < 64; $x++) {
$rgba = @imagecolorat($img, $x, $y);