imagecreatefrompng使导入的图像块是什么?

时间:2011-07-15 00:08:35

标签: php imagecreatefrompng

我正在尝试使用以下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);
?>

产生与上面相同的类块效果,除了现在没有文字写入图像(显然?)。

1 个答案:

答案 0 :(得分:3)

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

imagealphablending($im, true); 
imagesavealpha($im, true);