这可能有些混乱。我正在使用带有导轨的Amcharts。 Amcharts带有PHP脚本来导出称为“ export.php”的图像

我正在尝试弄清楚如何将代码在export.php中获取并将其放入控制器中。

这是代码:

   <?php
// amcharts.com export to image utility
// set image type (gif/png/jpeg)
$imgtype = 'jpeg';

// set image quality (from 0 to 100, not applicable to gif)
$imgquality = 100;

// get data from $_POST or $_GET ?
$data = &$_POST;

// get image dimensions
$width  = (int) $data['width'];
$height = (int) $data['height'];

// create image object
$img = imagecreatetruecolor($width, $height);

// populate image with pixels
for ($y = 0; $y < $height; $y++) {
  // innitialize
  $x = 0;

  // get row data
  $row = explode(',', $data['r'.$y]);

  // place row pixels
  $cnt = sizeof($row);
  for ($r = 0; $r < $cnt; $r++) {
    // get pixel(s) data
    $pixel = explode(':', $row[$r]);

    // get color
    $pixel[0] = str_pad($pixel[0], 6, '0', STR_PAD_LEFT);
    $cr = hexdec(substr($pixel[0], 0, 2));
    $cg = hexdec(substr($pixel[0], 2, 2));
    $cb = hexdec(substr($pixel[0], 4, 2));

    // allocate color
    $color = imagecolorallocate($img, $cr, $cg, $cb);

    // place repeating pixels
    $repeat = isset($pixel[1]) ? (int) $pixel[1] : 1;
    for ($c = 0; $c < $repeat; $c++) {
      // place pixel
      imagesetpixel($img, $x, $y, $color);

      // iterate column
      $x++;
    }
  }
}

// set proper content type
header('Content-type: image/'.$imgtype);
header('Content-Disposition: attachment; filename="chart.'.$imgtype.'"');

// stream image
$function = 'image'.$imgtype;
if ($imgtype == 'gif') {
  $function($img);
}
else {
  $function($img, null, $imgquality);
}

// destroy
imagedestroy($img);
?>

我在这里发现的线程中存在一些版本: http://www.amcharts.com/forum/viewtopic.php?id=341

但是我觉得上面的PHP代码从那以后发生了变化 - 因为这两个实现都不适合我。

有帮助吗?

解决方案 2

因此,显然我遇到了其他错误,这使我认为已经存在的代码无效。但是,我在原始问题中链接到的线程上的代码实际上确实有效!

其他提示

该代码或多或少的剂量是抓住已发送到脚本(帖子)的信息。信息包括图片的高度和宽度以及每个像素的RGB值。脚本绘制每个像素并将图像在末尾发送给客户端。

您可以使用 rmagick绘制像素的方法. 。这将为您带来相同的结果。

不断的帖子数据看起来像这样:

height = number -> cast to int
width = number -> cast to int
// first row with a repeating part of R:G:B,R:G:B,... (n = width)
r0 = 255:0:0,150:120:0,77:88:99,...
r1 = ...
.
.
r100 = ... -> the row count is the height - 1

实际上,我找到了 讨论 关于通过像素图来加速像素。

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top