web pages
[banana.git] / xface.php
1 <?php
2
3 $face = base64_decode($_REQUEST['face']);
4 $face = ereg_replace("'", "'\\''", $face);
5
6 header("Content-Type: image/png");
7 passthru("echo '$face'|uncompface -X |convert xbm:- png:-");
8 ?>