Hello,
I'm receiving the following error when saving a word to pdf.
WidthCannotBeNegative at Docentric.Pdf.Drawing.XSize.setWidth(Double value) at Docentric.Pdf.Drawing.FontHelper.MeasureString(String text, XFont font, XStringFormat stringFormatnotyetused)
Working on getting a de-identified sample for you. Save as pdf from Word works fine.
Code being used is:
Document doc = Document.Load(inputFilePath);
using (Stream reportDocumentStream = File.Create(outputFilePath))
{
doc.Save(reportDocumentStream, Docentric.Documents.ObjectModel.SaveOptions.Pdf);
}