CFPDF 从 BLOB 创建变量
在 ColdFusion 9 中,我们将 pdf 数据存储在数据库的 blob 中。
如何将其放入 cfpdf 变量中?似乎所有选项都需要文件名。有没有办法不用写文件就可以实现呢?
In ColdFusion 9 we have pdf data stored in a blob in the database.
How do I get that into a cfpdf variable? It seems like all options require a filename. Is there a way to do it without writing a file?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
CFPDF
和CFDOCUMENT
用于动态创建和修改 PDF。由于您的数据库中的 blob 中已包含 PDF,因此您只需要 CF 页面即可使用CFCONTENT
将其作为响应的一部分发送回来。假设您使用某种类型的 ID 来引用要从数据库中检索的 PDF,示例如下所示:CFPDF
andCFDOCUMENT
are for creating and modifying a PDF dynamically. As you already have the PDF in a blob in your database you simply need the CF page to send it back as part of the response usingCFCONTENT
. Assuming you are using some type of ID to reference which PDF you want to retrieve from your database an example would look like this: