Is it possible to add functionality for rotating PDF files?
Hi @Raymond Vermeer,In PDF Helper forge component I cannot find the option for the rotation. You can use Javascript if you want to rotate the PDF.
instance.applyOperations([ { type: "rotatePages", pageIndexes: [0], // Rotate page 0. rotateBy: 90 // Rotate page 90 degrees clockwise. }]);Thanks