Hi, thank you for your response. When I tried the newer version of the dll it didn't work at all, and when merging to word I got a message about it being an evaluation copy. ( I have a new license ). Please find a word doc attached that I can't merge to pdf.
Here is the code we are using:
case DocumentFormat.PDF:
MemoryStream documentStream = new MemoryStream();
// Save the document in Aspose.Pdf.Xml format.
document.Save(documentStream, SaveFormat.AsposePdf);
// Read the document in Aspose.Pdf.Xml format into Aspose.Pdf.
Aspose.Pdf.Pdf pdf = new Aspose.Pdf.Pdf();
pdf.BindXML(documentStream, null);
// Instruct to delete temporary image files.
//pdf.IsImagesInXmlDeleteNeeded = true;
//Enable the caching of True type font map on disk
pdf.IsTruetypeFontMapCached = true;
//Set the path of True type font map file
pdf.TruetypeFontMapPath = System.IO.Path.GetTempPath();
// Produce the PDF file.
pdf.Save(outputDocumentStream);