Skip to content

Generate 2D representations of Minecraft player skins

Notifications You must be signed in to change notification settings

The-Zip/Skin-Generator

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 

Repository files navigation

Skin-Generator

Fetch the skin of any Minecraft player and convert it into a 2D image that's human-viewable (doesn't look like the skin file)

Usage

To use this just upload it your web server and visit the page, example: http://yourdomain.com/skin.php?player={name}

For usage using Face's, , example: http://yourdomain.com/avatar.php?player={name}

You can easily use this in any page by just using an tag, here is an example of how to use it in a page

<div class="someclass">
    <p>charries96's Skin:</p><br />
    <img src="http://charries96.co.nf/skin.php?player=charries96">
</div>

Alternatively if you add this to your .htaccess document you can get a players skin by using http://yourdomain.com/skin/{name}

Options +FollowSymLinks
RewriteEngine On
RewriteRule ^skin/([^/]*)$ /skin.php?player=$1 [L]

Code example:

<div class="someclass">
    <p>charries96's Skin:</p><br />
    <img src="http://charries96.co.nf/skin/charries96">
</div>

About

Generate 2D representations of Minecraft player skins

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages