Fix infinite loop if quotation reach last line of the post
[banana.git] / examples / xface.php
... / ...
CommitLineData
1<?php
2
3header('Content-Type: image/gif');
4passthru('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?>