PHP gd库,如何在现有的PNG图像上绘制线条

时间:2012-05-02 11:33:29

标签: php gd

也许有人可以帮我这个,但是我被困在这里。 所以我有zem.png图像,大小为560x225。它有透明的背景。我需要使用gd库从x,y到x1,x2绘制线条(我需要绘制5-7行,但是如何绘制一条线就可以得到一个简单的例子。)

以下是我的透明图像的创建方式:

// Kuriame paveiksleli pasinaudodami GD library keliams tarp miestu pavaizduoti
$im = imagecreatetruecolor(560, 225);
$red = imagecolorallocate($im, 255, 0, 0);
$black = imagecolorallocate($im, 0, 0, 0);

// Make the background transparent
imagecolortransparent($im, $black);

// Issaugome paveiksleli
imagepng($im, './zem.png');
imagedestroy($im);

创建此图像后,我将其用作表格或div的背景图像。我的表格ir div被划分为x - 35块的块,在y 25上。

我选择了4个点或4个块放置其他图像,这是我如何生成那些rondom块:

$x = rand(1, 35);
$y = rand(1, 25);
$x2 = rand(1, 35);
$y2 = rand(1, 25);
$x3 = rand(1, 35);
$y3 = rand(1, 25);
$x4 = rand(1, 35);
$y4 = rand(1, 25);

单块大小为16x9。我需要从每个生成的块中绘制一条线到其他块(表示来自城市的道路),所以我必须将我的x(x2,x3 ..)乘以16而我的y乘以9才能知道行的正确坐标起点和终点。所以我这样做:

// Breziame kelius
$kordinate = $x * 16;
$kordinate2 = $y * 9;
$kordinate3 = $x2 * 16;
$kordinate4 = $y2 * 9;

Okey我现在有一条线的坐标。而且那里有我被困住的地方。我尝试了许多例子,人们预先创造了funkcions等。但我仍然无法使用php gd库绘制一条线。那么也许有人可以提出一些建议要为图像创建代码添加一些内容,或者只是删除它,只需留下空白透明图像并打开它然后画一条线......

1 个答案:

答案 0 :(得分:1)

当我制作表格或地图图像时,我总是准备一个类和函数。我不确定它是否有帮助,但这是我的示例代码。您可以将此文件命名为GridTb.php并运行它。

 <?php
header('Content-type: image/png');
$GridTb = new GridTb();
$GridTb->pngfile(330, 700);

class GridTb {

    function pngfile($width, $height) {

        define("WIDTH", $width);
        define("HEIGHT",$height);


        $png_image = imagecreate(WIDTH, HEIGHT);

        imagecolorallocate($png_image, 255, 255, 255);
        imagesetthickness($png_image, 1);
        $black = imagecolorallocate($png_image, 0, 0, 0);

        $x = 0;
        $y = 0;
        $w = imagesx($png_image) - 1;
        $z = imagesy($png_image) - 1;
        //basic square frame
        imageline($png_image, $x, $y, $x, $y + $z, $black);
        imageline($png_image, $x, $y, $x + $w, $y, $black);
        imageline($png_image, $x + $w, $y, $x + $w, $y + $z, $black);
        imagerectangle($png_image, $x, $y + $z, $x + $w, $y + $z, $black);

        $wid = 30;
        // $h=40;
        for ($row = 0; $row < 10; $row++) {

            imageline($png_image, $wid, HEIGHT, $wid, 0, $black);
            $wid+=30;
            imageline($png_image, $wid, HEIGHT, $wid, 0, $black);

            for ($h = 40; $h < 701; $h++) {

                $h2 = array(60,200,150,150,100);
                imageline($png_image, WIDTH, $h, 0, $h, $black);
                $h+=60;
                imageline($png_image, WIDTH, $h, 0, $h, $black);
                $h+=200;
                imageline($png_image, WIDTH, $h, 0, $h, $black);
                $h+=150;
                imageline($png_image, WIDTH, $h, 0, $h, $black);
                $h+=150;
                imageline($png_image, WIDTH, $h, 0, $h, $black);
                $h+=100;
                imageline($png_image, WIDTH, $h, 0, $h, $black);
                //sum of $h = 700
            }
        }
        imagepng($png_image);
        imagedestroy($png_image);
    }

}

?>
<IMG src="GridTb.php">