cacert-webdb/www/sealgen.php

14 lines
349 B
PHP
Raw Normal View History

2004-10-29 01:02:13 +00:00
<?
header("Content-type: image/png");
$r = 255;
$g = 255;
$b = 255;
$font = 1;
$x = 25;
$y = 4;
2004-12-06 21:53:35 +00:00
$im = imagecreatefrompng($_SESSION['_config'][filepath]."/www/images/secured.png");
2004-10-29 01:02:13 +00:00
$tc = imagecolorallocate ($im, $r, $g, $b);
imagestring ($im, $font, $x, $y, "CAcert.org", $tc);
imagepng($im);
?>