fix(server): thumbnail rotation when using embedded previews (#13948)

This commit is contained in:
Terry Zhao 2024-11-08 01:30:59 -05:00 committed by GitHub
parent 7534098596
commit c8b46802d6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 50 additions and 22 deletions

View file

@ -373,3 +373,14 @@ export enum ImmichTelemetry {
REPO = 'repo',
JOB = 'job',
}
export enum ExifOrientation {
Horizontal = 1,
MirrorHorizontal = 2,
Rotate180 = 3,
MirrorVertical = 4,
MirrorHorizontalRotate270CW = 5,
Rotate90CW = 6,
MirrorHorizontalRotate90CW = 7,
Rotate270CW = 8,
}