3

我正在使用以下功能,我从用户发布的 php 站点稍微调整了该功能。

function createImgText ($string=NULL, $fontsize=0, $marginX=0, $imgH=0, $fontfile=NULL, $imgColorHex=NULL, $txtColorHex=NULL){
    if($string != ""){
    //header("Content-type: image/png");    
    //
    $spacing = 0;

    $line = array("linespacing" => $spacing);

    if (file_exists($fontfile)) $box = @imageftbbox($fontsize,0,$fontfile,$string,$line) or die('Box command error');
    else die("ERROR - font");

    $tw=$box[4]-$box[0]; //image width
    $marginY = $imgH - (($imgH - $fontsize) / 2);
    $imgWidth = $tw + (2*$marginX);
    $im = ImageCreate($imgWidth, $imgH);
    $int = hexdec($imgColorHex);
    $arr = array("red" => 0xFF & ($int >> 0x10),
           "green" => 0xFF & ($int >> 0x8),
           "blue" => 0xFF & $int);
    $black = ImageColorAllocate($im, $arr["red"], $arr["green"], $arr["blue"]);
    $int = hexdec($txtColorHex);
    $arr = array("red" => 0xFF & ($int >> 0x10),
           "green" => 0xFF & ($int >> 0x8),
           "blue" => 0xFF & $int);
    $white = ImageColorAllocate($im, $arr["red"], $arr["green"], $arr["blue"]);
    ImageFtText($im, $fontsize, 0, $marginX, $marginY, $white, $fontfile, $string, array());
    ImagePng($im);
    ImageDestroy($im);
}else{
    echo "ERROR - no string";
}
}

我在我的 index.php 中使用以下内容

  error_reporting(-1); 
  ini_set('display_errors', true);

以及输出图像的页面。

我没有收到任何错误。:( 但是,取消注释标题部分会导致 Firefox 说“图像包含错误并且不会显示”。

图像 php 文件:

<?php
 error_reporting(-1); 
ini_set('display_errors', true);
$code = $sys->core->generateRandomString($sys->settings['captchal']);
echo 'Debug: Using string: ' . $code . ' font: fonts/' . $sys->settings['captchaf'] . '<br>';


$sys->core->createImgText($code, 9, 10, 18, 'fonts/' . $sys->settings['captchaf'], "000000", "FFFFFF");
?> 

它说:

Debug: Using string: nrcujP font: fonts/airstream.ttf
�PNG  IHDR0�H@�PLTE������������???___uV#�pIDAT�c` �E�D�x���*�s�bP     �@fR�SVV``�F�0t4UTu6uuh3rl@�+4h3k6 �),6F�!�P�LHPTD8� �c�p�,�8�( �8�Q+|�Q��IEND�B`� 

我有一个页面

 <?php echo phpinfo(); ?> 

它说启用了 GD 和所有插件,包括 TTF 支持。以前有人遇到过类似的问题吗?我尝试了其他方法,但似乎在第二个 ImageColorAllocate 上失败了。当我搜索时,我在谷歌上没有看到任何提及它。假设在调用时渲染图像然后自行销毁,而不占用文件空间。


在 NXT 的帮助下解决了问题。我之前有一个空格

 <?php 

我忽略了。

4

2 回答 2

1
imagepng($im,"new.png",0);
imagedestroy($im);

试试这个我希望它会工作........ https://stackoverflow.com/questions/13619834/upload-png-image-with-transparency-code-but-it-not-working-and-also -showing-the/13621103#13621103- >此链接符合您的问题。

于 2013-03-14T19:30:27.230 回答
1

我使用了您的代码并稍作更改,并且效果很好。

我的改变只有:

  • 用我周围的其他一些 .ttf 替换字体名称
  • 对验证码文本进行硬编码
  • 删除了带有调试文本的行(它不能在那里,因为它会破坏图像)
  • 调整了函数调用
  • 取消注释 header() 行

如果仍然有问题,请确保只输出图像内容并直接在任何可用的文本编辑器中打开脚本 URL 以查看源代码。还要检查输出中是否没有任何前导和尾随空格。

function createImgText($string=NULL, $fontsize=0, $marginX=0, $imgH=0, $fontfile=NULL, $imgColorHex=NULL, $txtColorHex=NULL){
    if($string != ""){
    header("Content-type: image/png");    

    $spacing = 0;

    $line = array("linespacing" => $spacing);

    if (file_exists($fontfile)) $box = @imageftbbox($fontsize,0,$fontfile,$string,$line) or die('Box command error');
    else die("ERROR - font");

    $tw=$box[4]-$box[0]; //image width
    $marginY = $imgH - (($imgH - $fontsize) / 2);
    $imgWidth = $tw + (2*$marginX);
    $im = ImageCreate($imgWidth, $imgH);
    $int = hexdec($imgColorHex);
    $arr = array("red" => 0xFF & ($int >> 0x10),
       "green" => 0xFF & ($int >> 0x8),
       "blue" => 0xFF & $int);
    $black = ImageColorAllocate($im, $arr["red"], $arr["green"], $arr["blue"]);
    $int = hexdec($txtColorHex);
    $arr = array("red" => 0xFF & ($int >> 0x10),
       "green" => 0xFF & ($int >> 0x8),
       "blue" => 0xFF & $int);
    $white = ImageColorAllocate($im, $arr["red"], $arr["green"], $arr["blue"]);
    ImageFtText($im, $fontsize, 0, $marginX, $marginY, $white, $fontfile, $string, array());
    ImagePng($im);
    ImageDestroy($im);
}else{
    echo "ERROR - no string";
}
}


error_reporting(-1); 
ini_set('display_errors', true);
$code = 'abcdef';

createImgText($code, 9, 10, 18, 'MyFont.ttf', "000000", "FFFFFF");
于 2013-03-14T20:18:19.783 回答