summaryrefslogtreecommitdiffstats
path: root/src/PHPImageWorkshop/Exif/ExifOrientations.php
blob: 94fa5df76300b1576c2419e12b02d350fa62ea8d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?php

namespace PHPImageWorkshop\Exif;

/**
 * Container for all EXIF orientations.
 */
final class ExifOrientations
{
    const UNDEFINED    = 0;
    const TOP_LEFT     = 1;
    const TOP_RIGHT    = 2;
    const BOTTOM_RIGHT = 3;
    const BOTTOM_LEFT  = 4;
    const LEFT_TOP     = 5;
    const RIGHT_TOP    = 6;
    const RIGHT_BOTTOM = 7;
    const LEFT_BOTTOM  = 8;
}