0byt3m1n1
Path:
/
data
/
applications
/
aps
/
tikiwiki
/
7.0-0
/
standard
/
htdocs
/
[
Home
]
File: tiki-testGD.php
<?php // (c) Copyright 2002-2011 by authors of the Tiki Wiki CMS Groupware Project // // All Rights Reserved. See copyright.txt for details and a complete list of authors. // Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See license.txt for details. // $Id: tiki-testGD.php 33195 2011-03-02 17:43:40Z changi67 $ /*! pmc feb 19, 2009 used in tiki-admin_include_gal.php to verify that the GD library is working in /tiki-admin.php?page=gal */ header("Content-type: image/png"); $im = @imagecreate(68, 12) or die("Cannot Initialize new GD image stream"); $background_color = imagecolorallocate($im, 0, 95, 170); $text_color = imagecolorallocate($im, 255, 255, 255); imagestring($im, 1, 2, 2, "test GD image", $text_color); imagepng($im); imagedestroy($im);