Product Recommendations

I am looking for a library to use in a .net project where we need to convert word documents and image files into pdf documents. Can you tell me if this is the only product I would need to accomplish these objectives?

Disregard the question. We’ve decided to use GrapeCity’s product. If this is what presales is like I can only imagine what support is like. All I have wanted to do today was purchase your product so I could begin development on a time sensitive application, but one seems to be able to answer my question. This post was even moved by someone here into a the Total Package thread that I did not want to purchase. Thanks but no thanks.

@tconrad,

You can use Aspose.Words for .NET API to meet these requirements. Please refer to the following articles:

You may also use Aspose.PDF for .NET API to convert images to PDF by using the following code:

Document document = new Document();
Page page = document.Pages.Add();
Image image = new Image();
image.File = path;
page.PageInfo.Margin = new MarginInfo(0, 0, 0, 0);
page.Paragraphs.Add(image);
document.Save(dataDir + "ImagetoPDF_19.3.pdf");

Hope, this helps.