From 0e92f04a41552c70027bb2ce5a90afcfa105d559 Mon Sep 17 00:00:00 2001 From: Ondrej Samohel Date: Tue, 22 Oct 2019 11:31:50 +0200 Subject: [PATCH] fixed respecting srgb -> linearize --- pype/plugins/maya/publish/extract_look.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pype/plugins/maya/publish/extract_look.py b/pype/plugins/maya/publish/extract_look.py index f883f98412..c7bb1a3e09 100644 --- a/pype/plugins/maya/publish/extract_look.py +++ b/pype/plugins/maya/publish/extract_look.py @@ -71,7 +71,6 @@ def maketx(source, destination, *args): "--checknan", # use oiio-optimized settings for tile-size, planarconfig, metadata "--oiio", - "--colorconvert sRGB linear", "--filter lanczos3" ] @@ -371,6 +370,7 @@ class ExtractLook(pype.api.Extractor): ) if linearise: + self.log.info("tx: converting sRGB -> linear") colorconvert = "--colorconvert sRGB linear" else: colorconvert = ""