Add image inside PDF by maintaining the image quality as high - Aspose.PDF for .NET

Hi,Support:

I created a pdf with one full-page pic for each page, is there any way to save the pdf with high image quality for best printing quality?

@ducaisoft

Would you please share how you are generating the PDF with images? Are you adding images in the PDF documents? Please share some sample code snippet along with used source files so that we can test the scenario in our environment and share our feedback with you accordingly.

Dim Stamp As ImageStamp = New ImageStamp(PicFile)
PdfDoc = New Aspose.Pdf.Document()
PdfDoc.Pages.Add()
PdfDoc.Pages(PdfDoc.Pages.Count).SetPageSize(Stamp.Width, Stamp.Height)
Stamp.Quality = 100
PdfDoc.Pages(PdfDoc.Pages.Count).AddStamp(Stamp)
PdfDoc.save(OutPdfFile)

The quality will be lower than that of the PicFile.

How to improve the quality of the Pdf?

@ducaisoft

We request you to please share your sample image file as well so that we can observe the quality issue in our environment as well. We tested the scenario with one of our sample images and were unable to notice any difference between the qualities of image itself and inside the PDF.