用php

时间:2017-02-01 11:14:45

标签: php gd graphic

有人可以帮助我使用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();

但是输出真的很奇怪(它是左上角的近似图像):

enter image description here

是否可以在x-0 y-0位置绘制 一个红色像素

0 个答案:

没有答案