openexr icon indicating copy to clipboard operation
openexr copied to clipboard

The OpenEXR project provides the specification and reference implementation of the EXR file format, the professional-grade image storage format of the motion picture industry.

Results 272 openexr issues
Sort by recently updated
recently updated
newest added

The documentation for `IStream::read` reads: > If read(c,n) reads the last byte from the file it returns false, otherwise it returns true. The man page for `feof` reads: > The...

I tried building OpenEXR using Visual Studio (both 2019 and 2022), by following these guidelines in the VS documentation about bulding CMake-based projects: https://docs.microsoft.com/en-us/cpp/build/cmake-projects-in-visual-studio?view=msvc-170 Both VS2019 and VS2022 gave me...

I am trying to update from 2.5.6 to 3.0.4. OpenEXR 3.0.4 builds, but my application no longer does. The error is: ``` .../include/OpenEXR/ImfHeader.h:22:10: fatal error: ImathVec.h: No such file or...

`brew doctor` on macOS 11.6.6 Big Sur shows me that ilmbase is deprecated. I have `ilmbase` installed and have no idea for what reason. I do not know whether it...

@lgritz has implemented a workaround for inconsistent UTF8 filename handling in Imf::isOpenExrFile https://github.com/OpenImageIO/oiio/pull/1941/commits/056507c93da60148b9af6ee0390eda45f01696c1 Fix should occur in OpenEXR directly methinks

Bug

Minor problem: ```bash src/lib/OpenEXRCore/chunk.c:350:86: warning: format ‘%ld’ expects argument of type ‘long int’, but argument 4 has type ‘int64_t’ {aka ‘long long int’} [-Wformat=] 350 | "Invalid chunk size reconstructing...

While packaging OpenEXR 2.5.8 for Gentoo, I noticed, the exec_prefix for the pkgconfig file of PyIlmBase is wrong. According to GNU standards[1], it should usually be `${prefix}`, which IMO implies...

It would appear the 2021 CI builds are configuring with c++14 and the comment says gcc 6.3. VFX Platform 2021 states gcc 9.3.1 and c++17, we should normalize this. Also,...

I'm working on upgrading the OpenEXR stack on Fedora but ran into a strange arch specific issue. The x86_64 build passes all tests. ``` Test project /builddir/build/BUILD/openexr-2.5.3/aarch64-redhat-linux-gnu Start 1: IlmBase.Half...

The `ImfErrorMessage` method uses a shared buffer `errorMessage` and this could result in an incorrect error messages when multiple images copy an exception message into that same errorbuffer. Would it...