Hello,
I'm just learning to use Telerik so I hope you can help me. I have a large image of several pages and I need to export it complete to a pdf file. The pdf file must have the number of pages needed so the image is all there and it shouldn't have any added header (neither blank space) at top of evey page.
Right now, I'm able to export an image using RadFixedPage and PDFFormatProvider, but the image is only in one page and it's not complete.
RadFixedDocument document = new RadFixedDocument();
RadFixedPage page = document.Pages.AddPage();
PdfFormatProvider provider = new PdfFormatProvider();
FixedContentEditor editor = new FixedContentEditor(page);
....
using (Stream output = File.OpenWrite("output.pdf"))
{
provider.Export(document, output);
}
Thanks in advance,