2a50f9f4e3450d301c5c700c77925b888d67b305
[banana.git] / examples / xface.php
1 <?php
2
3 header('Content-Type: image/jpeg');
4 passthru('echo '.escapeshellarg(base64_decode(str_replace(' ', '+', $_REQUEST['face']))).'|uncompface -X |convert xbm:- jpg:-');
5
6 ?>