0

我正在使用以下代码在 joomla 1.5 中创建图像

            $session=JFactory::getSession();
    $randomnr = rand(1000, 9999);
    $session->set('randomr2',md5($randomnr));
    $im = imagecreatetruecolor(100, 38);

$white = imagecolorallocate($im, 255, 255, 255);
$grey = imagecolorallocate($im, 150, 150, 150);
$black = imagecolorallocate($im, 0, 0, 0);

imagefilledrectangle($im, 0, 0, 200, 35, $black);

//path to font - this is just an example you can use any font you like:

$font = dirName(__FILE__).'/font/karate/Karate.ttf';

imagettftext($im, 20, 4, 22, 30, $grey, $font, $randomnr);

imagettftext($im, 20, 4, 15, 32, $white, $font, $randomnr);

//prevent caching on client side:
header("Expires: Wed, 1 Jan 1997 00:00:00 GMT");
header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT");
header("Cache-Control: no-store, no-cache, must-revalidate");
header("Cache-Control: post-check=0, pre-check=0", false);
header("Pragma: no-cache");

header ("Content-type: image/gif");
imagegif($im);
imagedestroy($im);

但是当我们在 joomla 1.5 中运行它时它会返回一些奇怪的字符那么在 joomla 1.5 中有没有其他方法可以从文本创建图像。

或者我正在寻找为我的 artform joomla 1.5 组件创建验证码的插件。

4

1 回答 1

0

我已经解决了自己添加MIME ENCODING图像的问题,

只需添加两行

$document =& JFactory::getDocument();
$document->setMimeEncoding('image/png');

你会找到自己的路。

于 2012-12-13T05:27:00.353 回答