Fix table size
[banana.git] / examples / xface.php
1 <?php
2
3 header('Content-Type: image/gif');
4 passthru('echo ' . escapeshellarg(base64_decode($_REQUEST['face']))
5 . '| uncompface -X '
6 . '| convert -transparent white xbm:- gif:-');
7
8 // vim:set et sw=4 sts=4 ts=4
9 ?>