Questions tagged as 'pdf'

8
answers

Exporting an HTML / PHP page to PDF

How to export an HTML page to a PDF file? Having a default document where you can change variables within this template, then export that page to an A4 format PDF file, without spoiling the layout. Code sample: $conteudo_html = ' <...
asked by 20.12.2013 / 16:23
2
answers

Save PDF Form - Bootstrap

I would like to save the PDF form or print but keep the layout displayed on the screen. Example: <!doctype html> <html lang="en"> <head> <!-- Required meta tags --> <meta charset="utf-8"> &l...
asked by 06.08.2018 / 17:21
1
answer

how to put a video inside a pdf [closed]

How to insert a video into a pdf generated using the iTextSharp library? I need the library because it also joins digital files and signature.     
asked by 11.10.2017 / 21:10
1
answer

What is the best way to generate pdf files via webservice? [closed]

I have a Soap webservice and I came across the need to generate pdf documents. Has anyone worked with generating many documents via webservice and what technologies have they used? Which technologies have achieved better performance, workability...
asked by 05.05.2016 / 15:14
1
answer

How to tell if a file was viewed

I'm doing a system in php where the counter sends a file to the client (using database). My question is as follows, how to do when the client accesses this file, be sent to the database the time and date it was opened. I was able to resolve i...
asked by 02.06.2014 / 21:48
1
answer

How to download PDF with url on sdcard? Android

I would like to be able to make a button that when clicked, I downloaded a pdf with the url of this one to the sdcard, but I am not getting at all ...     
asked by 30.07.2015 / 08:55
2
answers

How to create a PDF from data from a Dictionary extracted from a .txt file (Python)

I have dict() with string data extracted from a arquivo.txt . dic = {} dic[valor[0]] = valor[1] print(dic) >>> dic = {'Almir': 44, 'Ana': 36 ....} I would like to save organized into PDF as follows: nome : 8585 nome...
asked by 16.11.2017 / 21:00
1
answer

Hide element when printing page

I have a page of a product report that converts it to pdf using wkhtmltopdf. My problem is when generating the pdf I want to put a div with a banner at the end of category, if the category does not occupy the entire page. EX: report with 10 p...
asked by 26.09.2016 / 20:18
1
answer

Is it possible to open a particular PDF page?

public static void main(String[] args) throws IOException, BiffException { Workbook workbook = Workbook.getWorkbook(new File("C:\testes\teste.xls")); Sheet sheet = workbook.getSheet(0); int linhas = sheet.getRows(); File pdfFile =...
asked by 19.08.2016 / 13:45
2
answers

Snappy does not render image in pdf?

I'm using Snappy to generate reports, however it's not rendering the image I load in my html, what can it be? Code: Route::get('/report', function(){ $pdf = PDF::loadView('templates.report'); return $pdf->stream(); });...
asked by 26.07.2016 / 14:50