Welcome to the WPF feedback portal. We’re happy you’re here! If you have feedback on how to improve the WPF, we’d love to hear it!>
Thanks for joining our community and helping improve Syncfusion products!
Hello,
I've found a bug in your library Syncfusion.Pdf.Base. PDF document can have any rotation specified in it and when it has specified rotation 360 degrees, the Rotation property of PdfPageBase returns enum that not exists(4). As a workaround I did just
var rotation = (PdfPageRotateAngle)(Math.Abs((int)page.Rotation)%4);