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!

  • Check out the features or bugs others have reported and vote on your favorites. Feedback will be prioritized based on popularity.
  • If you have feedback that’s not listed yet, submit your own.

Thanks for joining our community and helping improve Syncfusion products!

1
Vote

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);