1

我正在尝试使用以下 PHP 将随机生成的文本文件应用于图像。(我现在只是使用随机图像。)

<?php
header ("Content-type: image/png");

$textfile = "quote.txt";
$quotes = array();
if(file_exists($textfile)){
$quotes = file($textfile);
srand ((float) microtime() * 10000000);
$string = $quotes[array_rand($quotes)];
$string = substr($string,0,strlen($string)-1);
}
else{
$string = "No 'Quote' available at this time.";
}


//$string = "your text";
// try changing this as well
$font = 4;
$width = imagefontwidth($font) * strlen($string) ;
$height = imagefontheight($font) ;
$im = imagecreatefrompng("test.png");
$x = imagesx($im) - $width ;
$y = imagesy($im) - $height;
$backgroundColor = imagecolorallocate ($im, 255, 255, 255);
$textColor = imagecolorallocate ($im, 0, 0,0);
imagestring ($im, $font, $x, $y,  $string, $textColor);
imagepng($im);
ImageDestroy($im);
?>

但是,当我运行该代码时,导入的图像变得非常块状。这是我正在测试的图像:http:
//i.stack.imgur.com/LhNkv.png

以下是它的实际显示方式:http:
//i.stack.imgur.com/AAcHZ.png

我的研究表明,“imagecreate”会生成“调色板”图像——我认为这可能与我的错误有关,但我已经看到很多基本图像绝不失真的例子。

提前感谢您的见解。

(呃。它不会让我发布图片,但让我上传它们就好了?)

更新
将代码更改为:

<?php
header ("Content-type: image/png");

$textfile = "quote.txt";
$quotes = array();
if(file_exists($textfile)){
$quotes = file($textfile);
srand ((float) microtime() * 10000000);
$string = $quotes[array_rand($quotes)];
$string = substr($string,0,strlen($string)-1);
}
else{
$string = "No 'Quote' available at this time.";
}


//$string = "your text";
// try changing this as well
$font = 4;
$width = imagefontwidth($font) * strlen($string) ;
$height = imagefontheight($font) ;
$im = imagecreatefrompng("test.png");
//$x = imagesx($im) - $width ;
//$y = imagesy($im) - $height;
//$backgroundColor = imagecolorallocate ($im, 255, 255, 255);
//$textColor = imagecolorallocate ($im, 0, 0,0);
//imagestring ($im, $font, $x, $y,  $string, $textColor);
imagepng($im);
ImageDestroy($im);
?>

产生与上面相同的块状效果,但现在也没有将文本写入图像(显然?)。

4

1 回答 1

3

可能是 alpha 混合问题。在保存图像之前尝试添加这些:

imagealphablending($im, true); 
imagesavealpha($im, true); 
于 2011-07-15T03:00:09.753 回答