additional_plugins/serendipity_event_gravatar/ycon/ycon.image.php

14 lines
324 B
PHP
Raw Normal View History

2011-12-13 12:29:05 +01:00
<?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;
2011-12-13 12:29:05 +01:00
}
?>