Hi
ANY UPDATES?
THANKS
As shared earlier, we are in the process to finalize next release of the API i.e. 21.5 which will be rolled out in coming days. As soon as the release is published, we will start investigation of the issues that are linked with this forum thread and share the ETA with you once the investigation is complete. We greatly appreciate your cooperation and patience in this matter.
We apologize for your inconvenience.
The issues you have found earlier (filed as PDFNET-49682) have been fixed in Aspose.PDF for .NET 21.6.
About PDFNET-49822, Can you please confirm if you are satisfied with the code snippet provided earlier?
using (PdfViewer pdfViewer = new PdfViewer())
{
System.Drawing.Printing.PageSettings printerPageSettings = new System.Drawing.Printing.PageSettings
{
Landscape = false
};
pdfViewer.AutoResize = true;
pdfViewer.AutoRotate = true;
pdfViewer.BindPdf(dataDir + "MFO-2105 RUATAN ST1-Before.pdf");
System.Drawing.Printing.PrinterSettings ps = new System.Drawing.Printing.PrinterSettings();
ps.PrinterName = "Microsoft Print to PDF";
ps.Copies = 1;
pdfViewer.PrintDocumentWithSettings(printerPageSettings, ps);
pdfViewer.Close();
}
We’ve checked the code snippet with the 24.9 version, and the form does not crop and the image is displayed on the last page. Can we deem this task resolved?