FileStream(来自 pdf 转换器的 jpeg)到 Byte[]
使用 aspose,我已将 pdf 文档的第一页转换为 jpeg(用作我的一个 asp.net 页面的“文档”部分中的缩略图)。到目前为止,它存储在 FileStream 中 - 但我需要一个字节数组来分配给图像控件的数据值。谁能指出我转换这个的正确方向?我环顾四周,但找不到解决方案。
多谢。
Using aspose, I have converted the first page of a pdf document to a jpeg (to be used as a thumbnail in a 'Documents' section to one of my asp.net pages). This is, upto this point, stored in a FileStream - but I need a byte array to assign to the datavalue of an Image control. Can anyone point me in the right direction to converting this? I've had a good look around and I can't find the solution.
Thanks a lot.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这应该有效:
byte[] data = File.ReadAllBytes("path/to/file.jpg")
This should work:
byte[] data = File.ReadAllBytes("path/to/file.jpg")
你可以试试这个......
you can try this....