Hi,<?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" />
I have tested the scenario using Aspose.Pdf 3.9.0.0 and I am unable to notice the problem. I have tested the issue with following code snippet. Please share the complete code/project so that we can investigate the cause of issue in details.
[C#]
Pdf pdf1 = new Pdf();
//Create a section in the Pdf object
Section sec1 = pdf1.Sections.Add();
//Create an image object in the section
Aspose.Pdf.Image image1 = new Aspose.Pdf.Image(sec1);
//Add image object into the Paragraphs collection of the section
sec1.Paragraphs.Add(image1);
//Set the path of image file
image1.ImageInfo.File = "C:/pdftest/LogoPiscina.jpg";
//Set the type of image using ImageFileType enumeration
image1.ImageInfo.ImageFileType = ImageFileType.Jpeg;
//Set image title
image1.ImageInfo.Title = "JPEG image";
//Save the Pdf
pdf1.Save("ClientApprovalReports.pdf", Aspose.Pdf.SaveType.OpenInAcrobat, HttpContext.Current.Response);