TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Ask HN: which kind of PDFs you generates?

4 点作者 trez将近 12 年前
What are the most common use cases for generating a PDF?

5 条评论

LarryMade2将近 12 年前
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.
ansgri将近 12 年前
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.
tptacek将近 12 年前
All our client deliverables are PDFs, generated from a JRuby Rails app (I haven&#x27;t had a lot of luck with Prawn).
claudius将近 12 年前
Scientific papers, other papers, letters, other texts, documentation, homework…<p>Could you maybe be more specific?
mooism2将近 12 年前
I generate a PDF when I want to print something out.