Skip to content

Instantly share code, notes, and snippets.

@aiwas
Created November 13, 2014 20:45
Show Gist options
  • Save aiwas/4c19622604daf79effb6 to your computer and use it in GitHub Desktop.
Save aiwas/4c19622604daf79effb6 to your computer and use it in GitHub Desktop.
Require PHP>=5.5.0だしテストもしてない
<?php
$user = "$_GET['user']";
$url = "http://s3.amazonaws.com/MinecraftSkins/{$user}.png";
$src = imagecreatefrompng(file_get_contents($url));
$face = imagecrop($src, ['x' => 8, 'y' => 8, 'width' => 8, 'height' => 8]);
header('Content-Type: image/png');
imagepng($face);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment