代码之家  ›  专栏  ›  技术社区  ›  David Thomas

ImageSetPixel的问题以及使用php5和gd 2.0(或更高版本,显然)显示图像

  •  0
  • David Thomas  · 技术社区  · 16 年前

    我在尝试,出于我潜意识里最为人所知的原因,制作一幅类似于雪崩的图片。

    使用php5和gd v2.0(或更高版本),我使用以下php/html:

    <?php
    
                $x = $y = 100;
    
                $gd = imagecreatetruecolor($x,$y);
    
                $w  = imagecolorallocate($gd, 255, 255, 255);
                $b  = imagecolorallocate($gd, 0, 0, 0);
    
    
                for ($r=1; $r <= $y; $r++) {
    
                    for ($c=1; $c <= $x; $c++) {
    
    
                            if (rand(0,1) == 0) {
                                $rand = $w;
                                        }
    
                            else {
                                $rand = $b;
                                        }
    
                        imagesetpixel($gd,$r,$c,$rand);
    
                                }
    
    
                            }
    
    
    echo "<?xml version=\"1.0\" encoding=\"utf-8\"?>"?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
    
    <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
    
    <head>
        <title></title>
        <link rel="stylesheet" type="text/css" href="css/stylesheet.css" />
    
    </head>
    
    <body page="snowcrash2">
    
        <?php
    
            echo "<div id=\"snowcrashimg\">";
    
    
    
    header('Content-Type: image/png');
                imagepng($gd);
    
    
    
            echo "</div>";
    
    
        ?>
    
    </body>
    
    </html>
    

    我试图迭代图像的每一行的每一列,将像素值设置为1或0以反映黑色或白色。

    但是,这会引发(fun)错误:“警告:无法修改头信息-第51行/var/www/play/snowcrash2.php:32中已发送的头(输出开始于/var/www/play/snowcrash2.php)”。

    将头(…)移动到的前几行(尝试将头放在可能会及时发送的位置)会导致以下错误(以图像形式):图像“ http://127.0.0.1/play/snowcrash2.php 无法显示,因为它包含错误。

    嗯……帮助?


    唯一的另一个话题是这个 Generated image using PHP and GD is being cut off 这与我所面临的问题不相关。

    1 回复  |  直到 12 年前
        1
  •  1
  •   Mladen Mihajlovic    16 年前

    当浏览器显示图像时,它将被单独下载并放置在页面上。因此,您不能在一个请求中发送HTML和图片。您需要的是一个html/php页面,该页面有一个标记,其中src设置为另一个只发送图像数据的页面。

    如: (索引php)

    <html>
    <body>
    <image src="pic.php" />
    </body>
    </html>
    

    现在,在另一个名为(pic.php)的文件中,您将生成图像并将其发送回带有“content-type”标题的响应,而绝对没有其他内容(可能除了其他标题)。

    如从 http://www.webdeveloper.com/forum/showpost.php?p=879552&postcount=2

    <?php
    
    $number = "";
    for ($i = 1; $i <= $lenght; $i++)
    {
         $number .= rand(0,9)."";
    }
    
    $width = 11*$lenght;
    $height = 30;
    
    $img = ImageCreate($width, $height);
    $background = imagecolorallocate($img,255,255,255);
    $color_black = imagecolorallocate($img,0,0,0);
    $color_grey = imagecolorallocate($img,169,169,169);
    imagerectangle($img,0, 0,$width-1,$height-1,$color_grey);
    imagestring($img, 5, $lenght, 7, $number, $color_black);
    //////// VERY IMPORTANT
    header('Content-Type: image/png');
    //////// VERY IMPORTANT
    imagepng($img);
    imagedestroy($img); 
    
    ?>