Hello.
var pdf = new Pdf();
var section = pdf.Sections.Add();
var image = new Image(section);
image.ImageInfo.ImageFileType = ImageFileType.Jpeg;
image.ImageInfo.ImageStream = msOriginalData;
image.ImageInfo.Title = “”;
section.PageInfo.Margin.Left = 0;
section.PageInfo.Margin.Right = 0;
section.PageInfo.Margin.Top = 0;
section.PageInfo.Margin.Bottom = 0;
var bitmap = new Bitmap(msOriginalData);
section.PageInfo.PageHeight = bitmap.Height + 1;
section.PageInfo.PageWidth = bitmap.Width;
section.Paragraphs.Add(image);pdf.Save(msPdfData);
I’m attaching the image and the resulting PDF, it contains white margins on right and bottom.Rgds, Leonid