如何在没有任何库的PHP中创建原始图像?

时间:2014-09-15 13:23:55

标签: php php-gd

我在内部网服务器上运行php,没有安装任何图形库。 现在我需要创建一个16x16像素的颜色块(颜色为#86D0FF),并想知道是否有办法在不必安装库的情况下为这么简单的事情返回所需的字节序列?

换句话说:我想在没有安装GD的情况下实现以下目标:

<?php 
    header("Content-Disposition: Attachment;filename=image.png"); // so that it can be saved...
    header("Content-type: image/png");

    $img = imagecreate(16,16);
    $color = imagecolorallocate( $image , 134 , 208 , 255 );
    imagefilledrectangle( $image , 0 , 0 , 16 , 16 , $color );
    imagepng( $image );
    imagedestroy( $image );

1 个答案:

答案 0 :(得分:1)

好的,我找到了解决方案。创建样本并保存为JPG,ICO,PNG和GIF,并使用十六进制编辑器查看它们,确定GIF看起来是最简单的。所以我现在正在阅读现有的GIF(作为模板),只是操纵字节[37..39](在该特定文件中)保存颜色值。

我从定义它们的CSS-File中获取的颜色值,因此还有一些css-parsing。也许代码可以帮助激励你; - )

<?php

   $css = file_get_contents('my.css');
   $col = $_GET["col"];   // file is referenced using /coloursample.php?col=#
   $patt = '/\.colGroup' . $col . '.*?background-color:.*?\#([A-F0-9]{3,6};/six';
   $bin = file_get_contents('sample.gif');
   if (preg_match($patt,$css,$regs))
   {
      $bin[37] = chr(hexdec(substr($regs[1],0,2)));
      $bin[38] = chr(hexdec(substr($regs[1],2,2)));
      $bin[39] = chr(hexdec(substr($regs[1],4,2)));
   }


  header("Content-Disposition: Attachment; filename=color" . $regs[1] . "gif");
  header("Cpntent-type: image/gif");
  echo $bin;