Hello!
Have an issue w/ merging specific PDFs. One thing that we noticed is we get the error when the following version of the Telerik.Windows.Documents.Fixed package: <PackageReference Include="Telerik.Windows.Documents.Fixed" Version="2020.2.504" />
but it works correctly with the following package from 2018:
<PackageReference Include="Telerik.Windows.Documents.Fixed">
<Version>2018.1.220.40</Version>
Trying to figure out what the differences are between those package versions and if there is a work around for the 2020 version so we don't have to use the 2018 package.
The Code is failing on the provider.Import:
using (var pdfInputStream = GetPdfDocumentStream(client, uri))
{
RadFixedDocument document = provider.Import(pdfInputStream);
mergedPdf.Merge(document);
}
Thanks!