1

可能重复:
在php中将数组转换为png

像素.JSON

{
  "274:130":"000",
  "274:129":"000",
  "274:128":"000",
  "274:127":"000",
  "274:126":"000",
  "274:125":"000",
}

从具有 X、Y 坐标和十六进制代码的 JSON 文件到基于数据生成图像的最佳方法是什么?

4

2 回答 2

2

这里缺少的是heightwidth但如果你能得到,那么你可以使用imagesetpixel从像素生成图像

例子

$pixels = '{
      "274:130":"000",
      "274:129":"000",
      "274:128":"000",
      "274:127":"000",
      "274:126":"000",
      "274:125":"000"
    }';

$list = json_decode($pixels, true);

//#GENERATE MORE DATA
for($i = 0; $i < 10000; $i ++) {
    $list[mt_rand(1, 300) . ":" . mt_rand(1, 300)] = random_hex_color();
}

$h = 300;
$w = 300;

$gd = imagecreatetruecolor($h, $w);
// ImageFillToBorder($gd, 0, 0, 0, 255);

foreach ( $list as $xy => $color ) {
    list($r, $g, $b) = html2rgb($color);
    list($x, $y) = explode(":", $xy);
    $color = imagecolorallocate($gd, $r, $g, $b);
    imagesetpixel($gd, $x, $y, $color);
}

header('Content-Type: image/png');
imagepng($gd);

样本输出

在此处输入图像描述

使用的功能

function html2rgb($color) {
    if ($color[0] == '#')
        $color = substr($color, 1);
    if (strlen($color) == 6)
        list($r, $g, $b) = array($color[0] . $color[1],$color[2] . $color[3],$color[4] . $color[5]);
    elseif (strlen($color) == 3)
        list($r, $g, $b) = array($color[0] . $color[0],$color[1] . $color[1],$color[2] . $color[2]);
    else
        return false;
    return array(hexdec($r),hexdec($g),hexdec($b));
}

function random_hex_color(){
    return sprintf("%02X%02X%02X", mt_rand(0, 255), mt_rand(0, 255), mt_rand(0, 255));
}
于 2012-10-12T18:06:33.070 回答
0

假设您的意思是,在客户端网页/浏览器中:您可以创建一个 HTML5 画布并根据您的 JSON 数据直接在其上绘制;我想它会很慢,但它会起作用。

您的“最佳”选择可能是重新考虑为什么要在 JSON 对象中发送图像数据,但我想这有一些未共享的上下文。

于 2012-10-12T17:54:49.490 回答