3

I have an upcoming .NET project that would require conversion from image (bitmap) into .pdf and .eps format. We would prefer to use third party library tool to do this rather than spending the time to reinvent the wheel. Here is the basic requirement:

  1. Preferrably a pure .NET library (we might put this converter code in Silverlight application, which won't have access to unmanaged code).
  2. Ability to read the input and generate the output on the fly (in memory).

Any recommendation?

4

3 回答 3

4

我对 Websupergoo 的产品很满意:http ://www.websupergoo.com/products.htm

于 2009-08-14T06:45:22.120 回答
1

Here are 3 free .Net PDF libraries I have tried in the past (not for image conversion, but they seem to provide that).

于 2009-08-13T17:05:09.643 回答
1

webSupergoo 的 ABCpdf .NET 组件可以将位图图像转换为 PDF 和 EPS。

您需要使用“AddImageBitmap”或“AddImageObject”函数,具体取决于您使用的是间接模式还是传递模式。

'AddImageBitmap' 的文档和示例代码可以在这里找到: http ://www.websupergoo.com/helppdf7net/source/5-abcpdf6/doc/1-methods/addimagebitmap.htm

此处解释了间接和传递模式:www.websupergoo.com/helppdf7net/source/3-concepts/9-images.htm

于 2009-08-14T10:21:19.797 回答