Do not block access to banana the group list if grp_pattern is set
[banana.git] / examples / xface.php
1 <?php
2
3 header('Content-Type: image/jpeg');
4 passthru('echo ' . escapeshellarg(base64_decode($_REQUEST['face']))
5 . '| uncompface -X '
6 . '| convert xbm:- jpg:-');
7
8 // vim:set et sw=4 sts=4 ts=4
9 ?>