我对imagegd lib有一个非常奇怪的问题。
请遵循以下方法:
public function getMatrixImage() {
// 90 x 40 test
$img = imagecreate($this->last_used_matrix_x, $this->last_used_matrix_y);
$background = imagecolorallocate($img, 200, 200, 200);
imagefill($img, $background, 0, 0);
echo "<pre>";
for ($y = 0; $y < $this->last_used_matrix_y; $y++) {
for ($x = 0; $x < $this->last_used_matrix_x; $x++) {
$pixel = $this->matrix[$y][$x];
// Debug 1 - comment/uncomment
// echo $pixel ? "#" : "-";
if (!$pixel) {
continue;
}
$color = imagecolorallocate($img, 0, 0, 0);
if ($this->id == 1) {
// Debug 2 - comment/uncomment
echo " ({$x}.{$y}) = BLACK" . PHP_EOL;
}
// I knew it's pointless but I am already desperated
$x = intval($x);
$y = intval($y);
imagesetpixel($img, $x, $y, imagecolorallocate($img, 0, 0, 0));
}
echo PHP_EOL;
}
echo "</pre>";
return $img;
}
方法很简单。使用受保护的变量$this->matrix
使用黑色/浅灰色填充图像。
让我解释一下循环 - 如果$this->matrix[$y][$x]
大于零则放黑色像素,否则什么也不做(留浅灰色)
我做了一些调试测试,结果如下:
http://pastebin.com/8DgytNzN - 图片应该全黑,而不是 - 我得到this
我错过了什么吗?那里发生了什么?
这就是我测试方法的方法:
$image = $layer->getMatrixImage() ;
$fpath = "download/tmp/" . uniqid() . ".jpg";
imagejpeg($image, $fpath);
imagedestroy($image);
echo '<img src="'.$fpath.'" /><br/>';