可以创建 MS Office 文件的缩略图吗?
有人尝试过创建 MS Office 文件的缩略图/预览吗?我的意思并不是提取文件中保存的预览图像,而是实际创建它们。这可行吗?
可以直接用代码打印到图像/pdf吗?
Have anybody ever tried to create thumbnails/previews of MS Office files? I do not mean extract saved preview images inside the file, but actually create them. Would this even be doable?
Could one print to an image/pdf directly in code?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在一般的VB/C#应用程序中,添加MSword/MSexcel组件并调用该组件来打开您想要的文件。然后使用与第一页等对应的参数调用一个打印函数。
这个 链接 显示如何从 C# 打开 .xls
In a general VB/C# application, add the MSword/MSexcel component and call the component to open the file you want. Then call one of the print functions with the parameters corresponding to first page etc.
This link shows how to open a .xls from C#