forked from leftypol/leftypol
Exif.php: add exif definitions
This commit is contained in:
parent
0122551b46
commit
d5d5d14bbd
1 changed files with 14 additions and 0 deletions
14
inc/Data/Exif.php
Normal file
14
inc/Data/Exif.php
Normal file
|
@ -0,0 +1,14 @@
|
|||
<?php
|
||||
namespace Vichan\Data;
|
||||
|
||||
class Exif {
|
||||
public const EXIF_ORIENTATION_0_UPRIGHT = 1;
|
||||
public const EXIF_ORIENTATION_0_FLIPPED = 2;
|
||||
public const EXIF_ORIENTATION_180_UPRIGHT = 3;
|
||||
public const EXIF_ORIENTATION_180_FLIPPED = 4;
|
||||
public const EXIF_ORIENTATION_90_UPRIGHT = 5;
|
||||
public const EXIF_ORIENTATION_90_FLIPPED = 6;
|
||||
public const EXIF_ORIENTATION_270_UPRIGHT = 7;
|
||||
public const EXIF_ORIENTATION_270_FLIPPED = 8;
|
||||
public const EXIF_ORIENTATION_UNDEFINED = 9;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue