有人可以帮助我使用php GD库绘制单个像素吗? 我有这样的代码:
$img = imagecreatetruecolor(100, 100);
$c = imagecolorallocate($img, 255, 0, 0);
$white = imagecolorallocate($img, 255, 255, 255);
imagefill($img, 0, 0, $white);
imagesetpixel($img, 0, 0, $c);
imagejpeg($img, 'created.jpg');die();
但是输出真的很奇怪(它是左上角的近似图像):
是否可以在x-0 y-0位置绘制 一个红色像素 ?