Questions tagged as 'pdf'

1
answer

Digital Signature PHP

I'm trying to digitally sign a document in PHP through A1 certificate. $pdf = new \FPDI(); $pdf_path = $_SERVER["DOCUMENT_ROOT"] . "\files\" . md5(uniqid("")) . ".pdf"; $path_assinado = $_SERVER["DOCUMENT_ROOT"] . "\files\" . md5(uniqid(""))...
asked by 23.10.2017 / 15:23
1
answer

PDF file generated gets changed

I developed a report in JasperStudio that takes some information in the Database and also some parameters that are passed via Inputs fields when I am testing the application on my station , the PDF is generated correctly, but when I'm runnin...
asked by 18.08.2017 / 21:11
2
answers

View PDF in WebView

I'm developing an application for a Clinical Analysis Lab. It has an online system where you can view the results. On the site, it has a list of all the exams of the client and when I click on the link to open the exam, it loads a PDF in a ne...
asked by 07.07.2017 / 14:44
1
answer

How to use data from a query in mongoDB? [duplicate]

I want to use the data that is returned from 'find ()' from MongoDB to create a table using the array that returns from MongoDB, and after the table is ready, generate a PDF, but I can not get access to the result data outside the connection f...
asked by 27.07.2017 / 15:41
1
answer

Using jsPDF, are there ready templates?

I'm using jsPDF to make a report from some user input data, however I'm having a lot of trouble getting the report pretty further due to the fact that I do not know how to customize much with the jsPDF . So there are templates ready for thi...
asked by 27.04.2016 / 20:05
1
answer

Show PDF on page via Servlet

Hello, I'm developing a web application using Servlets and JSPs. I do not have much experience yet. My page contains a button that downloads a BD file and a <object> html to display a PDF that is in the BD. The button works no...
asked by 12.08.2015 / 13:34
0
answers

How do I open a PDF specific page with Xamarin (iOS)?

I use the following code to open a PDF document. I'd like to know how to open the PDF on a specific page, because every time I run the code, the document opens at the beginning. public void OpenFile(string targetPath) { try {...
asked by 26.09.2018 / 17:54
1
answer

How to use DOMPDF in Laravel 4 in conjunction with a view in BLADE?

I need to generate PDF report in Laravel 4. I found several alternatives and I'm in doubt about which option is best: DOMPDF ( alternative link ) It seems very easy to use, since it is our good old HTML plus CSS, however I did not unders...
asked by 23.12.2013 / 19:10
1
answer

generate and send email with pdf file attached with php

In my PHP script, I need to generate a PDF file and send it via email. I have already been able to send an attached file via email using phpmailer and generate a PDF in the browser using fpdf. The problem is that I can not attach the PDF to t...
asked by 31.08.2018 / 14:36
1
answer

Reading and displaying a PDF inside a zipped folder without extracting it

Is it possible to do this or do I really have to extract the file before then read it? In my code I'm doing this: string zipPath = @"C:\Users\Analistas\Desktop\ZipFile.zip"; using (ZipArchive archive = ZipFile.OpenRead(zipPath)...
asked by 04.01.2018 / 18:55