| // Copyright 2019 The Chromium Authors |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| #ifndef PDF_PAGE_ORIENTATION_H_ |
| #define PDF_PAGE_ORIENTATION_H_ |
| // Enumeration of allowed page orientations. Assigned values permit simple |
| // modular arithmetic on orientations. |
| enum class PageOrientation : uint8_t { |
| // Rotated clockwise 90 degrees. |
| // Rotated (clockwise) 180 degrees. |
| // Rotated clockwise 270 degrees (counterclockwise 90 degrees). |
| // Last enumeration value. |
| // Whether the page orientation is `kClockwise90` or `kClockwise270`. |
| bool IsTransposedPageOrientation(PageOrientation orientation); |
| // Rotates a page orientation clockwise by one step (90 degrees). |
| PageOrientation RotateClockwise(PageOrientation orientation); |
| // Rotates a page orientation counterclockwise by one step (90 degrees). |
| PageOrientation RotateCounterclockwise(PageOrientation orientation); |
| } // namespace chrome_pdf |
| #endif // PDF_PAGE_ORIENTATION_H_ |