返回 PDF 的 VB.NET 函数?

发布于 2024-11-05 15:34:33 字数 179 浏览 0 评论 0原文

我正在尝试创建一个返回 PDF 文档的函数。像这样的事情:

Function GetPDF(ByVal DirectoryPath as String) as PDF
   Return DirectoryPath
End Function

有什么办法可以做到这一点吗?谢谢!

I'm trying to create a function that would return a PDF document. Something like this:

Function GetPDF(ByVal DirectoryPath as String) as PDF
   Return DirectoryPath
End Function

Any way to do this? Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

总以为 2024-11-12 15:34:33

你想用它做什么?操纵它?提供给客户吗?

一般来说,您会返回一个...

Function GetPDF(ByVal filePath as String) as FileStream

    Return File.OpenRead(filePath);

End Function

字节数组...

Function GetPDF(ByVal filePath as String) as Byte()

    Return File.ReadAllBytes(filePath);

End Function

What are you trying to do with it? Manipulate it? Serve it to a client?

Generally speaking you'd return a Stream...

Function GetPDF(ByVal filePath as String) as FileStream

    Return File.OpenRead(filePath);

End Function

or an array of Bytes...

Function GetPDF(ByVal filePath as String) as Byte()

    Return File.ReadAllBytes(filePath);

End Function
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文