action cloudmersive_preprocessing_get_page_angle { label: "Get the angle of the page / document / receipt" description: "Analyzes a photo or image of a document and identifies the rotation angle of the page." provider: cloudmersive method: POST path: "/ocr/preprocessing/image/get-page-angle" encoding: json output: { type: "object" description: "Result of performing a get-page-angle operation" properties: { Angle: { type: "number" format: "double" description: "Angle of the page in radians; 0 represents perfectly horizontal" } Successful: { type: "boolean" description: "True if the operation was successful, false otherwise" } } } }