additional_plugins/serendipity_event_gravatar/ycon/ycon.image.php
2011-12-13 12:29:05 +01:00

14 lines
303 B
PHP

<?php
require_once 'ycon.php';
function build_ycon($filename, $seed='',$size=''){
$hash = md5($seed);
$image = ycon($hash, $size, 255, 255, 255);
imagetruecolortopalette($image, false, 64);
// header('Content-type: image/png');
imagepng($image,$filename);
imagedestroy($image);
return true;
}
?>