├── LICENSE ├── README.md ├── macOS-10.13-azure-pipelines.yml ├── src ├── python │ ├── oiio │ │ └── __init__.py │ └── setup.py └── vcpkg │ └── ports │ ├── openimageio-py3.6 │ ├── CONTROL │ ├── FindOpenEXR.cmake │ ├── fix_libraw.patch │ ├── imageio.cpp │ ├── portfile.cmake │ └── use-webp.patch │ ├── openimageio-py3.7 │ ├── CONTROL │ ├── FindOpenEXR.cmake │ ├── fix_libraw.patch │ ├── imageio.cpp │ ├── portfile.cmake │ └── use-webp.patch │ ├── pybind11-py3.6 │ ├── CONTROL │ ├── aliastemplates.patch │ └── portfile.cmake │ ├── pybind11-py3.7 │ ├── CONTROL │ ├── aliastemplates.patch │ └── portfile.cmake │ ├── python3-py3.6.4 │ ├── 0001-Static-library.patch │ ├── 0002-Static-CRT.patch │ ├── 0003-Fix-header-for-static-linkage.patch │ ├── 0004-Fix-iomodule-for-RS4-SDK.patch │ ├── 0005-Fix-DefaultWindowsSDKVersion.patch │ ├── CONTROL │ └── portfile.cmake │ ├── python3-py3.6.5 │ ├── 0001-Static-library.patch │ ├── 0002-Static-CRT.patch │ ├── 0003-Fix-header-for-static-linkage.patch │ ├── 0004-Fix-iomodule-for-RS4-SDK.patch │ ├── 0005-Fix-DefaultWindowsSDKVersion.patch │ ├── CONTROL │ └── portfile.cmake │ └── python3-py3.7.0 │ ├── 0001-Static-library.patch │ ├── 0002-Static-CRT.patch │ ├── 0003-Fix-header-for-static-linkage.patch │ ├── 0004-Fix-iomodule-for-RS4-SDK.patch │ ├── 0005-Fix-DefaultWindowsSDKVersion.patch │ ├── CONTROL │ └── portfile.cmake ├── tests ├── img │ └── test_image_01.exr └── test_imagedimensions.py ├── ubuntu16.04-azure-pipelines.yml └── win2016-azure-pipelines.yml /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredrikaverpil/oiio-python/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredrikaverpil/oiio-python/HEAD/README.md -------------------------------------------------------------------------------- /macOS-10.13-azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredrikaverpil/oiio-python/HEAD/macOS-10.13-azure-pipelines.yml -------------------------------------------------------------------------------- /src/python/oiio/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/python/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredrikaverpil/oiio-python/HEAD/src/python/setup.py -------------------------------------------------------------------------------- /src/vcpkg/ports/openimageio-py3.6/CONTROL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredrikaverpil/oiio-python/HEAD/src/vcpkg/ports/openimageio-py3.6/CONTROL -------------------------------------------------------------------------------- /src/vcpkg/ports/openimageio-py3.6/FindOpenEXR.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredrikaverpil/oiio-python/HEAD/src/vcpkg/ports/openimageio-py3.6/FindOpenEXR.cmake -------------------------------------------------------------------------------- /src/vcpkg/ports/openimageio-py3.6/fix_libraw.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredrikaverpil/oiio-python/HEAD/src/vcpkg/ports/openimageio-py3.6/fix_libraw.patch -------------------------------------------------------------------------------- /src/vcpkg/ports/openimageio-py3.6/imageio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredrikaverpil/oiio-python/HEAD/src/vcpkg/ports/openimageio-py3.6/imageio.cpp -------------------------------------------------------------------------------- /src/vcpkg/ports/openimageio-py3.6/portfile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredrikaverpil/oiio-python/HEAD/src/vcpkg/ports/openimageio-py3.6/portfile.cmake -------------------------------------------------------------------------------- /src/vcpkg/ports/openimageio-py3.6/use-webp.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredrikaverpil/oiio-python/HEAD/src/vcpkg/ports/openimageio-py3.6/use-webp.patch -------------------------------------------------------------------------------- /src/vcpkg/ports/openimageio-py3.7/CONTROL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredrikaverpil/oiio-python/HEAD/src/vcpkg/ports/openimageio-py3.7/CONTROL -------------------------------------------------------------------------------- /src/vcpkg/ports/openimageio-py3.7/FindOpenEXR.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredrikaverpil/oiio-python/HEAD/src/vcpkg/ports/openimageio-py3.7/FindOpenEXR.cmake -------------------------------------------------------------------------------- /src/vcpkg/ports/openimageio-py3.7/fix_libraw.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredrikaverpil/oiio-python/HEAD/src/vcpkg/ports/openimageio-py3.7/fix_libraw.patch -------------------------------------------------------------------------------- /src/vcpkg/ports/openimageio-py3.7/imageio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredrikaverpil/oiio-python/HEAD/src/vcpkg/ports/openimageio-py3.7/imageio.cpp -------------------------------------------------------------------------------- /src/vcpkg/ports/openimageio-py3.7/portfile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredrikaverpil/oiio-python/HEAD/src/vcpkg/ports/openimageio-py3.7/portfile.cmake -------------------------------------------------------------------------------- /src/vcpkg/ports/openimageio-py3.7/use-webp.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredrikaverpil/oiio-python/HEAD/src/vcpkg/ports/openimageio-py3.7/use-webp.patch -------------------------------------------------------------------------------- /src/vcpkg/ports/pybind11-py3.6/CONTROL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredrikaverpil/oiio-python/HEAD/src/vcpkg/ports/pybind11-py3.6/CONTROL -------------------------------------------------------------------------------- /src/vcpkg/ports/pybind11-py3.6/aliastemplates.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredrikaverpil/oiio-python/HEAD/src/vcpkg/ports/pybind11-py3.6/aliastemplates.patch -------------------------------------------------------------------------------- /src/vcpkg/ports/pybind11-py3.6/portfile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredrikaverpil/oiio-python/HEAD/src/vcpkg/ports/pybind11-py3.6/portfile.cmake -------------------------------------------------------------------------------- /src/vcpkg/ports/pybind11-py3.7/CONTROL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredrikaverpil/oiio-python/HEAD/src/vcpkg/ports/pybind11-py3.7/CONTROL -------------------------------------------------------------------------------- /src/vcpkg/ports/pybind11-py3.7/aliastemplates.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredrikaverpil/oiio-python/HEAD/src/vcpkg/ports/pybind11-py3.7/aliastemplates.patch -------------------------------------------------------------------------------- /src/vcpkg/ports/pybind11-py3.7/portfile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredrikaverpil/oiio-python/HEAD/src/vcpkg/ports/pybind11-py3.7/portfile.cmake -------------------------------------------------------------------------------- /src/vcpkg/ports/python3-py3.6.4/0001-Static-library.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredrikaverpil/oiio-python/HEAD/src/vcpkg/ports/python3-py3.6.4/0001-Static-library.patch -------------------------------------------------------------------------------- /src/vcpkg/ports/python3-py3.6.4/0002-Static-CRT.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredrikaverpil/oiio-python/HEAD/src/vcpkg/ports/python3-py3.6.4/0002-Static-CRT.patch -------------------------------------------------------------------------------- /src/vcpkg/ports/python3-py3.6.4/0003-Fix-header-for-static-linkage.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredrikaverpil/oiio-python/HEAD/src/vcpkg/ports/python3-py3.6.4/0003-Fix-header-for-static-linkage.patch -------------------------------------------------------------------------------- /src/vcpkg/ports/python3-py3.6.4/0004-Fix-iomodule-for-RS4-SDK.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredrikaverpil/oiio-python/HEAD/src/vcpkg/ports/python3-py3.6.4/0004-Fix-iomodule-for-RS4-SDK.patch -------------------------------------------------------------------------------- /src/vcpkg/ports/python3-py3.6.4/0005-Fix-DefaultWindowsSDKVersion.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredrikaverpil/oiio-python/HEAD/src/vcpkg/ports/python3-py3.6.4/0005-Fix-DefaultWindowsSDKVersion.patch -------------------------------------------------------------------------------- /src/vcpkg/ports/python3-py3.6.4/CONTROL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredrikaverpil/oiio-python/HEAD/src/vcpkg/ports/python3-py3.6.4/CONTROL -------------------------------------------------------------------------------- /src/vcpkg/ports/python3-py3.6.4/portfile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredrikaverpil/oiio-python/HEAD/src/vcpkg/ports/python3-py3.6.4/portfile.cmake -------------------------------------------------------------------------------- /src/vcpkg/ports/python3-py3.6.5/0001-Static-library.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredrikaverpil/oiio-python/HEAD/src/vcpkg/ports/python3-py3.6.5/0001-Static-library.patch -------------------------------------------------------------------------------- /src/vcpkg/ports/python3-py3.6.5/0002-Static-CRT.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredrikaverpil/oiio-python/HEAD/src/vcpkg/ports/python3-py3.6.5/0002-Static-CRT.patch -------------------------------------------------------------------------------- /src/vcpkg/ports/python3-py3.6.5/0003-Fix-header-for-static-linkage.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredrikaverpil/oiio-python/HEAD/src/vcpkg/ports/python3-py3.6.5/0003-Fix-header-for-static-linkage.patch -------------------------------------------------------------------------------- /src/vcpkg/ports/python3-py3.6.5/0004-Fix-iomodule-for-RS4-SDK.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredrikaverpil/oiio-python/HEAD/src/vcpkg/ports/python3-py3.6.5/0004-Fix-iomodule-for-RS4-SDK.patch -------------------------------------------------------------------------------- /src/vcpkg/ports/python3-py3.6.5/0005-Fix-DefaultWindowsSDKVersion.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredrikaverpil/oiio-python/HEAD/src/vcpkg/ports/python3-py3.6.5/0005-Fix-DefaultWindowsSDKVersion.patch -------------------------------------------------------------------------------- /src/vcpkg/ports/python3-py3.6.5/CONTROL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredrikaverpil/oiio-python/HEAD/src/vcpkg/ports/python3-py3.6.5/CONTROL -------------------------------------------------------------------------------- /src/vcpkg/ports/python3-py3.6.5/portfile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredrikaverpil/oiio-python/HEAD/src/vcpkg/ports/python3-py3.6.5/portfile.cmake -------------------------------------------------------------------------------- /src/vcpkg/ports/python3-py3.7.0/0001-Static-library.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredrikaverpil/oiio-python/HEAD/src/vcpkg/ports/python3-py3.7.0/0001-Static-library.patch -------------------------------------------------------------------------------- /src/vcpkg/ports/python3-py3.7.0/0002-Static-CRT.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredrikaverpil/oiio-python/HEAD/src/vcpkg/ports/python3-py3.7.0/0002-Static-CRT.patch -------------------------------------------------------------------------------- /src/vcpkg/ports/python3-py3.7.0/0003-Fix-header-for-static-linkage.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredrikaverpil/oiio-python/HEAD/src/vcpkg/ports/python3-py3.7.0/0003-Fix-header-for-static-linkage.patch -------------------------------------------------------------------------------- /src/vcpkg/ports/python3-py3.7.0/0004-Fix-iomodule-for-RS4-SDK.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredrikaverpil/oiio-python/HEAD/src/vcpkg/ports/python3-py3.7.0/0004-Fix-iomodule-for-RS4-SDK.patch -------------------------------------------------------------------------------- /src/vcpkg/ports/python3-py3.7.0/0005-Fix-DefaultWindowsSDKVersion.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredrikaverpil/oiio-python/HEAD/src/vcpkg/ports/python3-py3.7.0/0005-Fix-DefaultWindowsSDKVersion.patch -------------------------------------------------------------------------------- /src/vcpkg/ports/python3-py3.7.0/CONTROL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredrikaverpil/oiio-python/HEAD/src/vcpkg/ports/python3-py3.7.0/CONTROL -------------------------------------------------------------------------------- /src/vcpkg/ports/python3-py3.7.0/portfile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredrikaverpil/oiio-python/HEAD/src/vcpkg/ports/python3-py3.7.0/portfile.cmake -------------------------------------------------------------------------------- /tests/img/test_image_01.exr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredrikaverpil/oiio-python/HEAD/tests/img/test_image_01.exr -------------------------------------------------------------------------------- /tests/test_imagedimensions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredrikaverpil/oiio-python/HEAD/tests/test_imagedimensions.py -------------------------------------------------------------------------------- /ubuntu16.04-azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredrikaverpil/oiio-python/HEAD/ubuntu16.04-azure-pipelines.yml -------------------------------------------------------------------------------- /win2016-azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredrikaverpil/oiio-python/HEAD/win2016-azure-pipelines.yml --------------------------------------------------------------------------------