whole bunch of changes :
[banana.git] / xface.php
1 <?php
2
3 $face = base64_decode($_REQUEST['face']);
4 $face = escapeshellarg($face);
5
6 header("Content-Type: image/png");
7 passthru("echo $face|uncompface -X |convert xbm:- png:-");
8
9 ?>