Blank pages in PDF

Greetings,
I'm looping through a dataset of 17 records, each record represents a page of an image.
All is well except that I get an extra blank page after each page resulting in 34 pages.
Here is a snippet of my code:

MemoryStream ms = new MemoryStream();
ms.Write(bytes, 0, bytes.Length);

Image image = Image.FromStream(ms);

int imgWdth = image.Width;
int imgHt = image.Height;

if (imgWdth > imgHt)
 pdfdoc.PageSettings.Orientation = PdfPageOrientation.Landscape;

pdfdoc.PageSettings.Margins.All = 0.0f;

PdfPage pdfpg = pdfdoc.Pages.Add();

PdfImage pdfimg = PdfImage.FromImage(image);

pdfimg.PhysicalDimension.ToSize();
pdfimg.Draw(pdfpg, 0, 0);

 


1 Reply

KD Kesavan D Syncfusion Team August 2, 2012 04:55 AM UTC

Hi John,

 

Thank you for using Syncfusion products.

 

We have created a sample for drawing the image on the pdf file, could you please verify the sample attached to this post and let us know if this helps you.

 

Regards,

Kesavan



Sample(104599)_ac3b439e.zip

Loader.
Up arrow icon