We don’t allow questions seeking recommendations for software libraries, tutorials, tools, books, or other off-site resources. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(7)
PDFSharp 或 iTextSharp? 在寻找免费图书馆时,我通常首先搜索 sf.net。
how about PDFSharp, or iTextSharp? I usually search sf.net first when looking for a free library.
LibTiff.Net 库 和 tiff2pdf 实用程序(随库提供源代码)可用于将 TIFF 图像转换为 .NET 中的 PDF
文档 库和实用程序使用 .NET 2.0,但您可能无需修改即可构建 .NET 1.1 版本。 该库和实用程序是免费且开源的,并且它们的代码不使用泛型和 .NET 1.1 中缺少的其他内容。
免责声明:我是图书馆的维护者之一。
LibTiff.Net library and tiff2pdf utility (comes in source code with the library) can be used to convert TIFF images to PDF documents in .NET
The library and the utility use .NET 2.0 but you probably will be able to build .NET 1.1 version without modifications. The library and utility are free and open source and their code doesn't use generics and other things absent from .NET 1.1.
Disclaimer: I am one of the maintainers of the library.
使用 ImageMagick。
Use ImageMagick.
Persist 软件的 ASPPDFlib.dll 可能会对您有所帮助。 http://www.asppdf.com/download.html
Persist software's ASPPDFlib.dll might be of your help. http://www.asppdf.com/download.html
查看 PDF Creator http://www.pdfforge.org/products/pdfcreator
我知道你可以编写脚本,但我不知道是否可以通过 ASP.NET 对它执行任何操作。 不管怎样,看看也没什么坏处。
Look into PDF Creator http://www.pdfforge.org/products/pdfcreator
I know you can script it, but I don't know if you can do anything with it via ASP.NET. Either way it couldn't hurt to look.
我之前必须在 asp.net 中执行此操作(实际上是 JPG 到 PDF,但足够接近......)
我使用 ImageMagick 并使用它。 我知道它不是本机 C# 代码,但它是免费的,而且运行得非常好。
只需运行如下命令行:
cmd /c Convert "c:\blah\original.tiff" "c:\blah\destination.pdf"
我使用“cmd /c”的原因是没有它,我就会遇到问题System.Diagnostics.Process.Start 搞乱了参数。
I've had to do this in asp.net before (actually JPG to PDF but close enough...)
I use ImageMagick and shell out to it. I know its not native c# code, but its free and it works brilliantly.
Just run a command line like this:
cmd /c convert "c:\blah\original.tiff" "c:\blah\destination.pdf"
The reason i use the 'cmd /c' is that without it, i have problems with System.Diagnostics.Process.Start messing up the arguments.
使用 PdfFoucs dll 只需 4 行代码即可将 PDF 转换为图像、Word、文本格式。 无需为此安装任何 exe。
用于在 MultiTiff 图像中转换的代码:
用于在基于主页的 Tiff 图像中转换的代码在 PDF 中:
用于在 Word 中转换的代码:
只需要在应用程序中添加 DLL。 sautinsoft 网站上提供试用版和许可证版本
Use PdfFoucs dll for converting PDF to Image, Word, Text format in 4 lines of code. No need to install any exe for that.
Code for converting in MultiTiff Image:
Code for converting in Tiff Image based on homany pages are there in PDF:
Code for converting in Worrd:
Only you need to add the DLL in your application. Trial version as well as license versions are available on sautinsoft site