From 7395c7a9dcd390bbcfad17a731d8d529602702c6 Mon Sep 17 00:00:00 2001 From: kean Date: Sat, 18 May 2024 09:11:03 -0400 Subject: [PATCH] Fix testThatImageOrientationIsPreservedForProcessedImages --- Sources/Nuke/Internal/Graphics.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/Nuke/Internal/Graphics.swift b/Sources/Nuke/Internal/Graphics.swift index 9f1b73d83..c79342d68 100644 --- a/Sources/Nuke/Internal/Graphics.swift +++ b/Sources/Nuke/Internal/Graphics.swift @@ -198,7 +198,7 @@ private extension CGContext { if image.bitsPerPixel == 8 { return .none // The only pixel format supported for grayscale CS } - return .premultipliedLast + return .noneSkipLast } }