TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Ask HN: which kind of PDFs you generates?

4 pointsby trezalmost 12 years ago
What are the most common use cases for generating a PDF?

5 comments

LarryMade2almost 12 years ago
Graphics - working in Liunx the best way to get &quot;what you print is what you see&quot; is to create a PDF and then print it with scaling off. Programs such as LibreOffice and Inkscape printer drivers have not been all that reliable to print properly, but export to PDF and print overcomes that.<p>Web Reporting - for web apps creating address label sheets with formatting that &quot;just works&quot; also is best route via PDF. Secondly is using tools such as PHP&#x27;s FPDF&#x2F;FPDI you can use PHP to programmatically fill out PDF forms, used that a lot for report forms like the DE542.<p>The main benefit of PDFs is that the PDF document accurately represents what you create across platforms (by including fonts, etc.) So it is very important for presentation documents, reports, and press-ready publication.
ansgrialmost 12 years ago
Visualizations, e.g. I have a script that composes a huge image from road traffic video which you can see at different scales. In raster it would be something like 200 MPx for desired level of detail, whereas in PDF you can freely mix raster and vector graphics in portable way.<p>Also, scanned document compression, using Mixed Raster Content technology.
tptacekalmost 12 years ago
All our client deliverables are PDFs, generated from a JRuby Rails app (I haven&#x27;t had a lot of luck with Prawn).
claudiusalmost 12 years ago
Scientific papers, other papers, letters, other texts, documentation, homework…<p>Could you maybe be more specific?
mooism2almost 12 years ago
I generate a PDF when I want to print something out.