Hello,
After upgrading from version 1528 to 1620 we faced with the regression while saving the first page of pdf as image (used for thumbnail extraction).
Before it was smth similar to snapshot, however now it is just a blank page.
The pdf is pretty unusual though and I am not sure how to add it here.
The code we are using is more or less the following
using var document = PdfDocument.Load(extractPdfThumbnailParameters.SourceFilePath);
var size = document.Pages[0].Size;
ImageSaveOptions options = new()
{
Format = ImageSaveFormat.Jpeg,
PageCount = 1,
PageNumber = 0
};
document.Save(extractPdfThumbnailParameters.DestinationFilePath, options);
How can I share the PDF with you?