Dear Team,
We are trying to import a pdf file into RadDocument by using PdfFormatProvider.Import() Method but getting exception "This specified method not found" Sample PDF file is attached and below is the piece of code for importing pdf into RadDocument. We need to set a watermark on pdf file by importing in RadDocument. We shall be very thankful to you for your prompt support. Thanks in advance.
string path = @"test watermark_2022_05_16_01_04_16_969_0_2742.pdf";byte[] readText = File.ReadAllBytes(path);
Stream stream = new MemoryStream(readText);
Telerik.Windows.Documents.FormatProviders.Pdf.PdfFormatProvider pdfProvider = new Telerik.Windows.Documents.FormatProviders.PdfFormatProvider();
RadDocument rdocument = pdfProvider.Import(stream);--On This line exception "This specified method is not found"