<div dir="ltr">Hello! Gazebo maintainer here, affected by this RC bug on opencolorio. I've looked in the problem and seems something easy to fix:<br><br>diff --git a/src/core/ImageDesc.cpp b/src/core/ImageDesc.cpp<br>index 63156c8..e96e758 100644<br>--- a/src/core/ImageDesc.cpp<br>+++ b/src/core/ImageDesc.cpp<br>@@ -57,8 +57,8 @@ OCIO_NAMESPACE_ENTER<br>             os << "gData=" << planarImg->getGData() << ", ";<br>             os << "bData=" << planarImg->getBData() << ", ";<br>             os << "aData=" << planarImg->getAData() << ", ";<br>-            os << "width=" << packedImg->getWidth() << ", ";<br>-            os << "height=" << packedImg->getHeight() << ", ";<br>+            os << "width=" << planarImg->getWidth() << ", ";<br>+            os << "height=" << planarImg->getHeight() << ", ";<br>             os << "yStrideBytes=" << planarImg->getYStrideBytes() << "";<br>             os << ">";<br>         }<br><br>The repo in salsa seems to be a work in progress to get 2.x series into Debian, although not finished yet. We could apply this patch on top of the current version to fix this bug while the 2.x transition is being done.<br><br>Let me know if you need more help.<br>Thanks!</div>