Hello! I've written XTF Surveyor, a small PyGUI application for viewing and converting sub-bottom profiling data in "widely known in narrow circles" XTF [0] format:
https://github.com/shamrin/pyxtf It's *mostly* portable, but currently only runs on Windows. Two small parts of it are Windows-specific: * function to replace Numeric.image_from_ndarray that doesn't work with RGB data where width (in bytes) is not a multiple of 4. [1] * request_old_directory replacement to add BIF_NEWDIALOGSTYLE flag for nicer dialog [2] I think the latter is easy to incorporate to PyGUI. But the former is not, because my replacement works only for grey images (where R=G=B) and also wasting memory a little bit. Are there people using PyGUI? :) Alexey [0]: http://en.wikipedia.org/wiki/EXtended_Triton_Format [1]: https://github.com/shamrin/pyxtf/blob/master/xtfgui.py#L121-L141 [2]: https://github.com/shamrin/pyxtf/blob/master/xtfgui.py#L350-L382 _______________________________________________ Pygui mailing list [email protected] http://mail.python.org/mailman/listinfo/pygui
