Questions tagged as 'pdf'

1
answer

Error activating LTV TimeStamp iTextSharp c #

I am currently programming a digital signer in C# with the iTextSharp library. Initially the signer did the task correctly, since he signed the document, requested the pin, etc. Everything was fine, until I was asked to sign and...
asked by 18.10.2016 / 17:17
1
answer

How to generate PDFs with Javascript

I have a program in Python that reads a text file (.txt) and with a series of data from the file, generates a PDF with certain information. To read the .txt, use regular expressions. In Javascript there is no problem, I can do it in a similar wa...
asked by 18.12.2015 / 08:55
1
answer

Create PDF of Multiple Pages with JSPDF

Hello friends I am trying to create a pdf to print some tickets, I am using boostrap to format html and to create the PDF jspdf and html2pdf The problem is that I want to accommodate 4 tickets on a letter sheet, but my code only generates 1 p...
asked by 10.02.2017 / 15:50
2
answers

to use to generate pdf with c #

Sorry, I need to generate the format of a Mayan calendar with c #, it is formed by images and I do not know what I can use to do it, it is not a database report, there are 10 images that I need to print. it's something a format like this link...
asked by 23.02.2016 / 02:38
4
answers

How can I attach a PDF file to a DB record in SQL with C #?

The need I am having is to know if there is any possibility of attaching PDF files or any type of file to a DB record in SQL Server 2008 R2 from a C # application made with VS 2012.     
asked by 09.02.2016 / 23:41
1
answer

PHP is not displayed when generating PDF

I am trying to generate a pdf with data collected in a form with PHP. The library that I am using is mPDF <?php $cliente = $_POST['cliente']; $direccion = $_POST['direccion']; $telefono = $_POST['telefono']; require_once(...
asked by 26.09.2018 / 12:36
1
answer

How to convert HTML to PDF with jsPDF, without losing CSS styles

I have the following HTML <!DOCTYPE html> <html lang="es"> <head> <title>hola</title> <meta charset="utf-8"> <link link="" rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/f...
asked by 17.04.2018 / 17:26
3
answers

Why does not my app made in laravel 5.4 generate the pdf with barryvdh / laravel-dompdf 8.0?

I just have this problem. I install the package correctly and all right up there, but I try to generate the pdf with barryvdh / laravel-dompdf , but all my attempts have been unsuccessful. My ajax: $.ajax({ type: 'post',...
asked by 22.06.2017 / 17:41
1
answer

Force download or show in another window a pdf using html2pdf

Can you please support me? I am developing a simple system for a company, they want to generate service orders. It is a form with various inputs that the client fills in order to generate a PDF with all this information. Using htmltopdf l...
asked by 28.01.2018 / 07:31
2
answers

How do I access a file created in the storage_path () folder in laravel?

I create a pdf with the package barryvdh / laravel-dompdf as follows: public function generarPdf(Request $req) { $datos = $req->data; Debugbar::info($datos); $archivo = storage_path().'\pdf\equipos\'.$datos[1].'-'.$datos[2]....
asked by 23.06.2017 / 09:23