我正在使用 Codeigniter 2.1.3 并且想向图像添加单个像素 - 我知道 GD 或 ImageMagick 应该能够做到这一点,但是我发现它们非常“臃肿”的库。有谁知道使用 Codeigniter 或什至另一个易于集成的 PHP OOP 库的相对简单的方法?
问问题
1050 次
1 回答
2
http://php.net/manual/en/function.imagesetpixel.php
图像集像素()
<?php
$x = 200;
$y = 200;
$gd = imagecreatetruecolor($x, $y);
$corners[0] = array('x' => 100, 'y' => 10);
$corners[1] = array('x' => 0, 'y' => 190);
$corners[2] = array('x' => 200, 'y' => 190);
$red = imagecolorallocate($gd, 255, 0, 0);
for ($i = 0; $i < 100000; $i++) {
imagesetpixel($gd, round($x),round($y), $red);
$a = rand(0, 2);
$x = ($x + $corners[$a]['x']) / 2;
$y = ($y + $corners[$a]['y']) / 2;
}
header('Content-Type: image/png');
imagepng($gd);
?>
于 2013-07-10T15:33:47.303 回答