Skip to content

Instantly share code, notes, and snippets.

@aiwas
Created November 18, 2014 02:24
Show Gist options
  • Save aiwas/5a7ea9c205e176868a1a to your computer and use it in GitHub Desktop.
Save aiwas/5a7ea9c205e176868a1a to your computer and use it in GitHub Desktop.
Minecraftのスキンの顔部分を取得する奴 4.xでもうごく
<?php
$user = $_GET['user'];
$url = "http://s3.amazonaws.com/MinecraftSkins/{$user}.png";
$skin = imagecreatefrompng($url);
$face = imagecreatetruecolor(8, 8);
imagecopy($face, $skin, 0, 0, 8, 8, 8, 8);
header('Content-Type: image/png');
imagepng($face);
imagedestroy($face);
imagedestroy($skin);
@aiwas
Copy link
Author

aiwas commented Nov 18, 2014

・GD Libraryがいります
・allow_url_fopenはtrueで

@aiwas
Copy link
Author

aiwas commented Nov 18, 2014

・HTMLだけで補間指定の拡大縮小が出来ないので、imagecopyresampled()で160*160くらいに拡大しておいたほうがいいかもしれない

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment