-
Notifications
You must be signed in to change notification settings - Fork 7
MVE2EXR
Simon edited this page Nov 4, 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.
https://github.com/simonfuhrmann/mve/issues/482
A demo conversion could be implemented with ImageMagick