I am generating a PDF with Laravel's DOM-PDF but I have a problem when the image weighs a lot, it does not generate the PDF but it sends me an error that the site can not be accessed, followed by the base64 code
Use dompdf, the problem is that it shows all the pdf content in the browser, what I want is that from a button download directly download it to the client's PC.
I have installed the snappy PDF binaries in windows in program files it works fine in my local server, but I uploaded my project to 000webhost and it does not work without the binaries, I understand that the binaries must run in the operating sy...
today I have a little doubt about what will be possible with DOMPDF, the library that I am currently using to generate PDF reports, print the content directly and not send it to a second page or have to download the PDF file?
As you can...
I have the following code
<?php
require_once("../../../VISTA/conexion.php");
require_once '../../../FRAMEWORKS/dompdf-master/lib/html5lib/Parser.php';
require_once '../../../FRAMEWORKS/dompdf-master/src/Autoloader.php';
Do...
Good afternoon I am trying to generate a pdf through the Dompdf library but I have had the error that I present in the title of the question. I would like to know in what way this could be solved. Thank you
PHP CODE:
<?php
require_once...
I'm using Laravel 5.6, and I want to create a new page to the PDF file, having loaded the first 25 records, using DOMPDF .
The controller I have it in the following way:
<?php
namespace App\Http\Controllers;
use Illuminate\Http\Reques...
I have this script that is not rendering correctly, firefox shows it but when I try to download the pdf I get corrupt file.
<html>
<head>
<style type="text/css">
</style>
</head>
<body >...
I have problems, I do not generate the pdf when I try to insert an image in the pdf format, I use the dompdf library, here my code.
<html>
<head>
<style type="text/css" >
</style>
</head>
<body...
I have a problem. I am generating a table that I want when I reach the end of the page, follow the rows but on the other half of the page. Let's say that the sheet is divided into 2 equal halves. The table starts in the left half and I want it t...