用PHP编写的HTML到PDF转换器
类 dompdf.wrapper 不存在 laravel 4.2.0
我正在尝试在 barryvdh 编写的项目中将 dompdf 包与 Lavarel 4.2.0 一起使用,我尝试安装该包的三个不同版本(0.6*、0.6.1、0.5.2) “名称”:“laravel/larave...
“致命错误:未捕获错误:在 null 上调用成员函数 get_cellmap()”
我正在使用 DomPdf 并尝试将我的文件转换为 PDF,但出现此错误: 致命错误:未捕获错误:在 null 上调用成员函数 get_cellmap() C:\xampp\htdocs\dom\dompdf\src\
我正在使用 DomPdf 并尝试将我的文件转换为 pdf,但遇到下面给出的奇怪错误 我用谷歌搜索了很多次并阅读了不同的论坛,但没有得到这个错误的原因。 请
使用 Laravel 框架 10.48.3 我在脚本标签中使用以下内容: 如果(isset($pdf)){ $text =“第 {PAGE_NUM} 页 / {PAGE_COUNT}”...</desc> <question vote="0"> <p>使用 Laravel 框架 10.48.3</p> <p>我在脚本标签中使用以下内容:</p> <pre><code><script type="text/php"> if (isset($pdf)) { $text = "page {PAGE_NUM} / {PAGE_COUNT}"; $size = 10; $font = $fontMetrics->getFont("Verdana"); $width = $fontMetrics->get_text_width($text, $font, $size) / 2; $x = ($pdf->get_width() - $width) / 2; $y = $pdf->get_height() - 35; $pdf->page_text($x, $y, $text, $font, $size); } </script> </code></pre> <p>在控制器中的使用:</p> <pre><code> public function getOutput(): string { $pdf = PDF::loadView($this->getOutputBladeTemplate(), $this->getOutputData()); return $pdf->output(); } </code></pre> <p>下面是第 1 页的屏幕截图,此文档中有 2 页,总数似乎有 1 和 2 重叠</p> <p><a href="https://i.sstatic.net/T0GdIjJj.png" rel="nofollow noreferrer"><img src="https://cdn.txt58.com/i/AWkuc3N0YXRpYy5uZXQvVDBHZElqSmoucG5n" alt="enter image description here"/></a></p> <p>在第二页上,它显示正确:</p> <p><a href="https://i.sstatic.net/WKRefVwX.png" rel="nofollow noreferrer"><img src="https://cdn.txt58.com/i/AWkuc3N0YXRpYy5uZXQvV0tSZWZWd1gucG5n" alt="enter image description here"/></a></p> <p>我目前使用的造型:</p> <pre><code> <style> header { position: fixed; } </style> </code></pre> <p>如果我删除固定位置,那么尽管有 2 页,但只有第一页会显示: 图片</p> <p>然后第二个将不显示页码。</p> <p><a href="https://i.sstatic.net/lyazjU9F.png" rel="nofollow noreferrer"><img src="https://cdn.txt58.com/i/AWkuc3N0YXRpYy5uZXQvbHlhempVOUYucG5n" alt="enter image description here"/></a></p> </question> <answer tick="false" vote="0"> <p>已修复:<pre><code><main></code></pre>标签需要位于实现此功能的<pre><code><header></code></pre>标签之上</p> </answer> </body></html>
使用 Dompdf 时如何将 pdf 文件中显示的灰色空间更改为白色?
我不确定这是否非常简单或不可能,我会尽力以最好的方式解释它。 我有一个 php 文件,它使用 Dompdf 库为用户提供一个 pdf 文件,以便他/她可以...
安装过程完成后,为了正确注册服务提供商和别名,您应该将以下行插入到 config/app.php 文件中: “提供商”=>
我正在使用 Laravel 9 和 Dompdf 生成一些 pdf 文件。 我要求 pdf 文件使用的刀片包含波斯语/波斯语/阿拉伯语字符语言,因此最终结果将是...
$fontDir = __DIR__ 。 '/字体'; $customFont = $fontDir 。 '/COOPBL.ttf'; $fontMetrics = $dompdf->getFontMetrics(); $customFontFamily = $fontMetrics->getFont('Cooper Black', 'bold', $customFont...
通过 Composer 安装 DomPDF 需要 PHP <8.2
我正在尝试安装 DomPDF 以与我的 Symfony 6.1.3 项目一起使用。我正在使用作曲家(作曲家需要 dompdf/dompdf)。 然而,它(它的一些依赖项)似乎不支持 PHP 8....
Heading ##// 将 HTML 渲染为 PDF $pdf->render(); 此渲染需要大量时间来转换。 虽然我的文件很大,但需要 30 分钟才能生成,有没有其他方法可以更快地生成,我
DOMPDF 不起作用,尝试使用“DejaVu Sans”时返回 500
我无法让我的 pdf 生成器工作。我正在使用 dompdf/dompdf 库,但在生成我想要的 PDF 时遇到很多麻烦。我的问题是:每次我尝试使用使用样式的文件生成 PDF 时...
PHP Dompdf - 找不到块级父级。不好。 (66号线)
所以,我为我的一个项目安装了 dompdf,但是当我尝试转换为 PDF 时,出现以下错误: 遇到未捕获的异常 类型:DOMPDF_Exception 消息:没有块级
我使用以下代码创建了密码保护, $dompdf = new Dompdf(array('enable_remote' => true)); $dompdf->loadHtml($html_print); #(可选)设置纸张尺寸和方向...
我尝试使用DomPdf显示图像水印,但它只出现在最后一页。我浏览了一些网站,但没有找到任何相关内容。 这是我的代码: 我尝试使用 DomPdf 显示图像水印,但它只出现在最后一页。我浏览了一些网站,但没有找到任何相关内容。 这是我的代码: <?php require_once 'dompdf/autoload.inc.php'; //referenciar o DomPDF com namespace use Dompdf\Dompdf; //Referenciar o NameSpace Options use Dompdf\Options; //Definir Options para habilitar PHP incorporado. $options = new Options(); $options->set('isPhpEnabled', 'true'); //Criando a Instancia $dompdf = new Dompdf($options); // Carrega seu HTML $dompdf->loadhtml("<h3>https://www.TutorialsWebsite.com</h3><center><h1>Welcome to Tutorials Website</h1><div class="wpb_wrapper"> <p><strong>Tutorialswebsite</strong> is a leading online education portal that helps technologies, software, business and creative skills readers to learn new skills at their own place from the comforts of their drawing rooms. Individual, corporate and academic members have access to learn anything on <a href="https://www.tutorialswebsite.com">tutorialswebsite.com</a> likes video tutorials, blogs content etc.</p> <p>From 5 years, we worked our way to adding new fresh articles on topics ranging from programming languages that helps students, leaders, IT and design professionals, project managers or anyone who is working with software development, creatives and business skills.</p> <h2 style="text-align: center;">Mission</h2> <p>Our mission is to deliver easy and best online resources on programming and web development to encourage our readers acquire as many skills as they would like to. We offer the useful and best tutorials for web professionals-developers, programmers, freelancer free of cost. We don’t force our readers to sign up with us or submit their details.</p> </div><h2 style="font-size: 24px;text-align: center;font-family:Roboto;font-weight:700;font-style:normal" class="vc_custom_heading">About Author</h2> <p> <strong><a href="https://www.pradeepmaurya.in/">Pradeep Maurya</a></strong> is the Professional Web Developer and Founder of <a href="https://www.tutorialswebsite.com">“Tutorialswebsite”</a>. He lives in Delhi and loves to be a self dependent person. As an author, he is trying his best to improve this platform day by day. You can contact him <strong><a href="https://www.facebook.com/erpradeepmauryarkt" target="_blank" rel="noopener noreferrer">@facebook</a></strong><strong>Website:</strong> <a href="https://www.pradeepmaurya.in" target="_blank" rel="noopener noreferrer">https://www.pradeepmaurya.in</a></p></center> '"); $dompdf->setPaper('A4', 'portrait'); //Renderizar o html $dompdf->render(); //Instanciar o Canvas $canvas = $dompdf->getCanvas(); //Recuperar Altura e Largura da página $width = $canvas->get_width(); $height = $canvas->get_height(); //Especifica a Imagem de Marca D'Água $imageURL = 'img/forper.png'; $imgHeight = 511; $imgWidth = 250; //Define a Opacidade da Imagem $canvas->set_opacity(.3); //Especifica as posições horizontal e vertical $x = (($width - $imgWidth) / 2); $y = (($height - $imgHeight) / 2); //Adiciona a Imagem ao PDF $canvas->image($imageURL, $x, $y, $imgWidth, $imgHeight); //Exibibir a página $dompdf->stream( "$nip.pdf", array( 'Attachment' => false //Para realizar o download somente alterar para true ) ); ?> 我更改了 HTML,因为旧的太大了。 如果只有一页,水印会正确显示,但如果有两页或更多页,图像只会出现在最后一页。 我尝试添加下面的代码以在第一页添加水印,但图像位于文本前面。 // Dirty fix for images and lines $canvas->page_script(' $image = \'img/image.png\'; // $pdf is the variable containing a reference to the canvas object provided by dompdf $pdf->image($image, ' . $x . ', ' . $y . ', ' . $imgWidth . ', ' . $imgHeight . '); '); 您必须使用 page_script 函数(就像您所做的那样),但您也需要编辑内部的画布。 为了避免格式错误并保持良好的维护语法,我建议仅使用画布代码添加一个新文件。 canvasScript.php $canvas = $dompdf->getCanvas(); $width = $canvas->get_width(); $height = $canvas->get_height(); $imageURL = 'img/forper.png'; $imgHeight = 511; $imgWidth = 250; $canvas->set_opacity(.3); $x = (($width - $imgWidth) / 2); $y = (($height - $imgHeight) / 2); $canvas->image($imageURL, $x, $y, $imgWidth, $imgHeight); 您的代码 // [...] // Renderize HTML $dompdf->render(); // Add watermark to all pages $canvasScript = file_get_contents('/canvasScript.php'); $canvas->page_script($canvasScript); $dompdf->stream("your_pdf.pdf"); dompdf没有文档,缺乏这种用法,我建议下次使用mpdf/mpdf。 通过设置水印插入前和插入后图像的不透明度找到了解决方案。 $pdf = Pdf::loadView($view, $data); $pdf->render(); $canvas = $pdf->getCanvas(); $canvas->page_script( function ($pageNumber,$pageCount,$canvas,$fontMetrics){ $w = $canvas->get_width(); $h = $canvas->get_height(); $imageURL = '';//path to image $imgWidth = 500; $imgHeight = 400; // Set opacity for current image $canvas->set_opacity(.2); $x = (($w-$imgWidth)/2); $y = (($h-$imgHeight)/2); $canvas->image($imageURL, $x, $y, $imgWidth, $imgHeight); //reset opacity (this does the trick) $canvas->set_opacity(1); }); return $pdf->stream('pdf.pdf',array("Attachment" => 0));
我试图在laravel中生成pdf,然后在页面的css中设置font-family,以便生成的pdf使用该font-family。我正在使用这个包:https://github.com/barryvdh/la...
无法使用 DOMPDF 渲染 PDF 中的非 ANSI 字符
我正在尝试使用 Pimcore 中的 DOMPDF 创建 PDF,其功能绝对正常,但我在尝试在 PDF 中包含非 ANSI 字符(如泰语、韩语、中文)时遇到问题
在我的项目中,我想将某个页面提取到PDF文件中。该页面主要是阿拉伯语。 我正在使用 barryvdh/laravel-dompdf 第一次尝试时,没有显示任何字符,只有
PHPMailer Sendgrid PHP - DomPDF HTML 渲染附件
我试图通过以下代码附加 dompdf 文件而不保存到服务器: 我从 PHP 响应中得到的错误是:无法发送消息。邮件程序错误:未知编码:pdffilename....
我无法下载带有图像的pdf文件,我在我的laravel项目中使用dompdf。 这是我的控制器代码: 公共函数 downloadPdf() { $cakes = Cake::all(); $数据 = [ ...
以下代码来自我的resume.php文件。我尝试将页面分为两个块,每个块使用 (.left) 和 (.right) 类表示。左侧块的内容正在显示,但在...