将不同格式的文档转换为 .net 中的 1 位 png 文件

发布于 2024-12-09 19:37:30 字数 227 浏览 0 评论 0原文

您好,我有一个计划,将一堆不同的格式(例如 Word、PDF、png、jpg、excel 文件)转换为“1 位 png”文件并将它们存储在数据库中。

我需要为此使用 .net 框架。你们知道有什么工具可以做到这一点吗?我想要一些可以购买的工具或 API。我很确定我需要不止一种工具来完成这项工作,这很好。

最好的方法是什么?是否可以将它们全部转换为TIFF格式,然后将它们转换为png?

谢谢

Hi I have an initiative of converting bunch of different formats such as Word, PDF, png, jpg, excel files into '1 bit png' files and store them in the database.

I need to use .net framework for this. Do you guys know any tools that can do this, I want some tools or API that I can buy. I am pretty sure I would need more than one tool for doing this, which is fine.

What would be the best way to do this? It is possible to convert them all to TIFF format and then convert them to png?

Thanks

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

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

发布评论

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

评论(1

忘羡 2024-12-16 19:37:30

这接近于 是否有用于将“任何文件类型”转换为 TIFF 图像的编程工具包?。我将重复我当时写的内容:


这是一个集成项目 - 没有一个工具可以读取您感兴趣的所有文件类型。在我们的例子中,我们开发了一种通用转码服务,它接受大量输入类型(按文件扩展名)并根据该类型执行外部应用程序:

  • Ghostscript 用于PDF 和 PS 文件,
  • ImageMagick 用于图像文件,
  • Apose.NET 用于 Office 类型,以及
  • 一些用于更简单类型(如文本文件)的自制内容。

我们还没有找到可以解释除 Visio 本身之外的所有版本的 Visio 文件的应用程序。您可能已经知道,Office Interop 不应在服务器上使用

This is close to a duplicate of Is there a programming toolkit for converting “any file type” to a TIFF image?. I'll just repeat what I wrote at that time:


This is an integration project - there is no one tool that will read all of the file types you're interested in. In our case, we developed a generic transcoding service that accepts numerous input types (by file extension) and executes external applications based on that type:

We haven't found an application that will interpret Visio files of all versions other than Visio itself. And as you may already know, Office Interop should not be used on a server.

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