13 lines
349 B
PHP
13 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);
|
|
?>
|