mirror of
https://github.com/typst/typst
synced 2025-08-16 07:58:32 +08:00
Fix exif
This commit is contained in:
parent
03b2e3e36e
commit
986f8b2456
@ -234,9 +234,9 @@ fn exif_transform(image: &RasterImage, size: Size) -> (Transform, Size) {
|
|||||||
Some(3) => no_flipping(true, true),
|
Some(3) => no_flipping(true, true),
|
||||||
Some(4) => no_flipping(false, true),
|
Some(4) => no_flipping(false, true),
|
||||||
Some(5) => with_flipping(false, false),
|
Some(5) => with_flipping(false, false),
|
||||||
Some(6) => with_flipping(false, true),
|
Some(6) => with_flipping(true, false),
|
||||||
Some(7) => with_flipping(true, true),
|
Some(7) => with_flipping(true, true),
|
||||||
Some(8) => with_flipping(true, false),
|
Some(8) => with_flipping(false, true),
|
||||||
_ => no_flipping(false, false),
|
_ => no_flipping(false, false),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user