|
Bugzilla – Bug 316 |
Bio-Formats Exporter inverts 8-bit stacks after saving as Quicktime movie |
Last modified: 2011-10-20 02:36:41 CDT |
| ⚠ |
NOTICE! This is a static HTML version of a legacy Fiji BugZilla bug. The Fiji project now uses GitHub Issues for issue tracking. Please file all new issues there. |
| Bio-Formats Exporter inverts 8-bit stacks after saving as Quicktime movie | |
|
|
|
||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||
When saving an 8-bit stack as Quicktime movie using Bio-Formats Exporter, the stack is inverted after saving. (The .mov file is correctly saved however) The following macro reproduces the bug (in latest Fiji on Mac OS 10.5 and 10.6): run("Bat Cochlea Volume (19K)"); // run("MRI Stack (528K)"); before = getPixel(10,10); run("Bio-Formats Exporter", "save=/Users/eglinger/Desktop/bcv_macro.mov"); after = getPixel(10,10); showMessage("Pixel (10,10) before saving: " + before + " after saving:" + after); // shows: Pixel (10,10) before saving: 0 after saving: 255 Additional note: When you run the same macro twice (replacing the same file), the opened stack is inverted upon displaying already, and the file seems to be corrupted (cannot be opened by Quicktime any more).