Skip to content

MVE2EXR

natowi edited this page Feb 14, 2020 · 3 revisions

Draft for MVEI 2 EXR conversion

The .mvei image format https://github.com/simonfuhrmann/mve/wiki/MVE-File-Format

The MVE image file format starts with the signature 89 4D 56 45 5F 49 4D 41 47 45 0A (hex).

89: Has the high bit set to discriminate from text files.
4D 56 45 5F 49 4D 41 47 45: The ASCII letters MVE_IMAGE.
0A: A Unix newline character.

What follows is binary signed 32-bit integers for width, height and channels, and the type.

The type corresponds to the mve::ImageType enum.

Then the binary image data follows.

Clone this wiki locally