You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
Currently, when editing documents in Paperparrot, there's no functionality to rotate a document directly within the edit document view. This can be frustrating when uploaded documents have incorrect orientations, making them difficult to read or work with.
Describe the solution you'd like
I would like a feature in the edit document view that allows users to rotate documents by 90, 180, or 270 degrees. Since Paperless already exposes an endpoint for rotating documents (/api/documents/<id>/rotate/), this could be seamlessly integrated into the UI.
Describe alternatives you've considered
The alternative is doing this on paperless-ngx web which obviously is not the reason why I am using this great app ;)
Additional context
The Paperless API supports rotation via the rotate endpoint, which accepts a degrees parameter. Leveraging this existing API capability within the UI would enhance usability and streamline document editing.
Here is the relevant API detail: POST /api/documents/<id>/rotate/
Parameters: { "degrees": 90 | 180 | 270 }
The text was updated successfully, but these errors were encountered:
bandundu
changed the title
# [Feature Request] Rotate Document in Edit View on Mac app
[Feature Request] Rotate Document in Edit View on Mac app
Jan 10, 2025
great suggestion! Paperparrot already allows you to rotate documents before uploading them, but adding a button to rotate them afterwards shouldn't be an issue.
Is your feature request related to a problem? Please describe.
Currently, when editing documents in Paperparrot, there's no functionality to rotate a document directly within the edit document view. This can be frustrating when uploaded documents have incorrect orientations, making them difficult to read or work with.
Describe the solution you'd like
I would like a feature in the edit document view that allows users to rotate documents by 90, 180, or 270 degrees. Since Paperless already exposes an endpoint for rotating documents (
/api/documents/<id>/rotate/
), this could be seamlessly integrated into the UI.Describe alternatives you've considered
The alternative is doing this on paperless-ngx web which obviously is not the reason why I am using this great app ;)
Additional context
The Paperless API supports rotation via the
rotate
endpoint, which accepts adegrees
parameter. Leveraging this existing API capability within the UI would enhance usability and streamline document editing.Here is the relevant API detail:
POST /api/documents/<id>/rotate/
Parameters:
{ "degrees": 90 | 180 | 270 }
The text was updated successfully, but these errors were encountered: