The contents of an uploaded .docx file is being cut-off when converted to .pdf file.
Code snippet:
var fileFormatProvider = new Telerik.Windows.Documents.Flow.FormatProviders.Docx.DocxFormatProvider();
using (MemoryStream inputFileStream = new MemoryStream())
{
    this.fileSystemService.GetFile(documentInfo, inputFileStream);
    if (fileFormatProvider != null)
    {
        var document = fileFormatProvider.Import(inputFileStream);
        using (MemoryStream output = new MemoryStream())
        {
            var pdfProvider = new Telerik.Windows.Documents.Flow.FormatProviders.Pdf.PdfFormatProvider();
            pdfProvider.Export(document, output);
            var newFile = new DocumentInfo()
            {
                NameWithPath = outputFileName,
                DocumentLocation = documentInfo.DocumentLocation
            };
            this.fileSystemService.SaveFile(newFile, output);
        }
    }
 
Can someone confirm if this a Telerik side issue, or am I missing a setting or config?
Thanks!
