You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
cacert-webdb/www/sealgen.php

14 lines
349 B
PHP

<?
header("Content-type: image/png");
$r = 255;
$g = 255;
$b = 255;
$font = 1;
$x = 25;
$y = 4;
$im = imagecreatefrompng($_SESSION['_config'][filepath]."/www/images/secured.png");
$tc = imagecolorallocate ($im, $r, $g, $b);
imagestring ($im, $font, $x, $y, "CAcert.org", $tc);
imagepng($im);
?>