{"id":22281490,"url":"https://github.com/afichet/openexr-viewer","last_synced_at":"2025-07-28T20:30:55.020Z","repository":{"id":42471355,"uuid":"363405791","full_name":"afichet/openexr-viewer","owner":"afichet","description":"Simple viewer for OpenEXR files with detailed metadata display","archived":false,"fork":false,"pushed_at":"2023-12-11T13:18:47.000Z","size":4739,"stargazers_count":104,"open_issues_count":15,"forks_count":6,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-04-05T03:23:35.925Z","etag":null,"topics":["hdr","images","openexr","openexr-files","openexr-viewer","viewer"],"latest_commit_sha":null,"homepage":"","language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-3-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/afichet.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null}},"created_at":"2021-05-01T12:34:53.000Z","updated_at":"2025-03-22T13:11:44.000Z","dependencies_parsed_at":"2023-12-09T14:40:54.410Z","dependency_job_id":null,"html_url":"https://github.com/afichet/openexr-viewer","commit_stats":null,"previous_names":[],"tags_count":10,"template":false,"template_full_name":null,"purl":"pkg:github/afichet/openexr-viewer","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/afichet%2Fopenexr-viewer","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/afichet%2Fopenexr-viewer/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/afichet%2Fopenexr-viewer/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/afichet%2Fopenexr-viewer/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/afichet","download_url":"https://codeload.github.com/afichet/openexr-viewer/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/afichet%2Fopenexr-viewer/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":267580457,"owners_count":24110844,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-07-28T02:00:09.689Z","response_time":68,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["hdr","images","openexr","openexr-files","openexr-viewer","viewer"],"created_at":"2024-12-03T16:18:39.691Z","updated_at":"2025-07-28T20:30:53.663Z","avatar_url":"https://github.com/afichet.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"OpenEXR Viewer\n==============\n\n[![openexr-viewer](https://snapcraft.io/openexr-viewer/badge.svg)](https://snapcraft.io/openexr-viewer)\n\nA simple viewer for OpenEXR files with detailed metadata probing.\n\nYou can display various types of layers, automatically combines RGB,\nLuminance-Chroma and Y layers.\n\n![Screenshot from 2021-09-11 01-58-27](https://user-images.githubusercontent.com/7930348/132928984-fd31c2c3-c66f-43c9-b63b-2f1836a09fe8.png)\n\nDisclaimer\n==========\n\nThis is a very early version... expect crashes, don't expect polished\npiece of software ;-)\n\n\nInstalling\n==========\n\nWindows\n-------\n\nYou can install OpenEXR Viewer from winget. Run in a terminal:\n\n```\nwinget install openexr-viewer\n```\n\nAlternatively, there is an installer you can download from the release\nsection: https://github.com/afichet/openexr-viewer/releases\n\n\nmacOS\n-----\n\nThere is prebuilt releases for macOS. You just need to download the\ninstaller in the releases section and run it.\n\nGet the releases here: https://github.com/afichet/openexr-viewer/releases\n\n\nLinux\n-----\n\nFor Arch Linux, you can use the AUR repository. To install, do:\n\n```\nyay -S openexr-viewer\n```\n\nFor other distribution, there is a snap package available:\n\n[![Get it from the Snap Store](https://snapcraft.io/static/images/badges/en/snap-store-black.svg)](https://snapcraft.io/openexr-viewer)\n\n\n```\nsudo snap install openexr-viewer\n```\n\n\nBuilding\n========\n\nTo build this package, you need Qt5 or greater and OpenEXR 3.0.1 or greater.\n\nLinux\n-----\n\nIf your package manager does come with an older version of OpenEXR,\nyou will have to build it your own:\n\n```bash\ncd /tmp\n\n# Imath dependency\ngit clone https://github.com/AcademySoftwareFoundation/Imath.git\ncd Imath\nmkdir build\ncd build\ncmake ..\nsudo make install\n\ncd /tmp\n\n# OpenEXR\ngit clone https://github.com/AcademySoftwareFoundation/openexr.git\ncd openexr\nmkdir build\ncd build\ncmake ..\nsudo make install\n```\n\nThen, you're ready to build the software:\n\n```bash\ngit clone https://github.com/afichet/openexr-viewer.git\ncd openexr-viewer\nmkdir build\ncd build\ncmake ..\nmake\n```\n\nWindows\n-------\n\nTo help for building on Windows, there is two scripts you can use:\n- `build_dependencies.bat` to build the necessary Imath and OpenEXR libraries\n- `build_windows.bat` to execute after the first to build the package.\n\nIt will generate in `build/Release` a shipable binary.\n\nYou will have to edit the script `build_windows.bat` to specify your\nQt installation folder.\n\nmacOS\n-----\n\nYou can install Qt from the official website and get a recent OpenEXR\nrelease from homebrew.\n\n```bash\nbrew install openexr\n```\n\nThen, you need to specify the of Qt's install when running CMake. For example:\n\n```bash\nmkdir build\ncd build\ncmake .. -DCMAKE_PREFIX_PATH=~/Qt/6.1.0/clang64\n```\n\nThen, you can build the package:\n\n```bash\nmake\n```\n\n\nLicense\n=======\n\nIt is licensed under the 3-clause BSD license.\n\nThis software uses the colormaps:\n\n- from https://bids.github.io/colormap/ by Nathaniel J. Smith, Stefan\nvan der Walt, and (in the case of viridis) Eric Firing. These are\nlicensed under CC0 license\n(http://creativecommons.org/publicdomain/zero/1.0/).\n- Turbo from https://gist.github.com/mikhailov-work/ee72ba4191942acecc03fe6da94fc73f by Anton Mikhailov licensed under Apache-2.0.\n- Most icons made by DinosoftLabs from www.flaticon.com \n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fafichet%2Fopenexr-viewer","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fafichet%2Fopenexr-viewer","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fafichet%2Fopenexr-viewer/lists"}