gpt4 book ai didi

tcpdf - 使用 TCPDF 在 PDF 文件中生成图表

转载 作者:行者123 更新时间:2023-12-02 10:56:11 29 4
gpt4 key购买 nike

关于此的主题有很多,但没有一个能解决我的问题。我想做的很简单 - 生成一个条形图,然后将该图嵌入到一个 pdf 文件中,我将使用名为 TCPDF 的库生成该文件。 .

我使用 TCPDF 生成 HTML 内容没有任何问题,但在生成图表并将其包含在 pdf 文件中时,我遇到了各种各样的问题。

生成图表

我正在使用名为 svggraph 的库创建图表。 。生成图表非常简单,唯一的问题是通过包含主类文件发送 header 。发送 header 后,TCPDF 无法生成 PDF 文档。

我现在的设置:

generatereport.php - TCPDF 在此页面上生成 pdf 文档graph.php - SVGGraph 在此页面上生成条形图

我已经尝试过:

  • file_get_contents('graph.php') from generatereport.php - 当我使用内置的 writeHTML 时,pdf 报告中没有输出任何内容code> TCPDF 提供的函数
  • require_once('graph.php') - header 已发送错误
  • echo file_get_contents('graph.php') - header 已发送,但这是预期的。好消息是图表已正确显示。

目标(我希望发生的事情)TCPDF 有一个内置的 ImageSVG 函数就是用于此目的。第一个参数可以采用 SVG 数据的 XML 字符串;这里的问题是我不知道如何从 graph.php 页面返回 XML 数据(我已经阅读了我能找到的所有文档页面)。

有人有使用这两个库的经验吗?

谢谢!

编辑:一些代码

图.php:

<?php
require_once 'svggraph/SVGGraph.php';
$graph = new SVGGraph(500, 400);
$graph->Values(1, 4, 8, 9, 16, 25, 27);
$graph->Render('LineGraph', true, true)
?>

生成报告.php

$html = file_get_contents('http://localhost:8080/vu/graph.php');

if(!empty($file)){
//$pdf->Write(0, $html, '', 0, 'L', true, 0, false, false, 0);
//$pdf->writeHTML($html, true, false, true, false, '');
$pdf->ImageSVG('@' . $html, $x=15, $y=30, $w='', $h='', $link='http://www.tcpdf.org', $align='', $palign='', $border=1, $fitonpage=false);
}

@ 符号告诉函数正在向其发送 XML 数据,而不是 SVG 文件。

最佳答案

使用fetch - 见下文

<?php
require_once 'svggraph/SVGGraph.php';
$graph = new SVGGraph(500, 400);
$graph->Values(1, 4, 8, 9, 16, 25, 27);
$output = $graph->fetch('LineGraph');
?>

然后将其提供给 TCPDF(因为不带选项的 fetch 会生成 XML 声明和文档类型)这应该生成以下格式的 $output:

<svg style="overflow: hidden; position: relative;" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="1226" version="1.1" height="826"><image transform="matrix(1.0364,-0.3305,0.3305,1.0364,-41.846,108.0143)" preserveAspectRatio="none" x="10" y="10" width="205" height="154" xlink:href="wallpaper.jpg" opacity="1" stroke-width="1"></image><rect transform="matrix(1.0364,-0.3305,0.3305,1.0364,-41.846,108.0143)" x="165" y="114" width="50" height="50" r="0" rx="0" ry="0" fill="#C0C0C0" stroke="#000" opacity="0" stroke-width="1"></rect><image transform="matrix(1.1575,0.2385,-0.2385,1.1575,-442.1395,-145.4163)" preserveAspectRatio="none" x="500" y="10" width="205" height="154" xlink:href="wallpaper.jpg" opacity="1" stroke-width="1"></image><rect transform="matrix(1.1575,0.2385,-0.2385,1.1575,-442.1395,-145.4163)" x="655" y="114" width="50" height="50" r="0" rx="0" ry="0" fill="#C0C0C0" stroke="#000" opacity="0" stroke-width="1"></rect></svg>

这样喂

$pdf->ImageSVG('@' . $output, $x=15, $y=30, $w='', $h='', $link='http://www.tcpdf.org', $align='', $palign='', $border=1, $fitonpage=false);

与 $VSOverFlow 的上述评论一致。

当然,您也可以将输出保存在文件中,然后像这样提供文件的路径

$pdf->ImageSVG($file='images/file.svg', $x=15, $y=30, $w='', $h='', $link='', $align='', $palign='', $border=0, $fitonpage=false);

关于tcpdf - 使用 TCPDF 在 PDF 文件中生成图表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18304565/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com