2002-02-23 14:59:59 -05:00
|
|
|
|
|
|
|
from wxPython.wx import *
|
|
|
|
from Main import opj
|
|
|
|
|
|
|
|
from cStringIO import StringIO
|
|
|
|
|
|
|
|
#----------------------------------------------------------------------
|
|
|
|
|
|
|
|
class TestPanel(wxPanel):
|
|
|
|
def __init__(self, parent, log):
|
|
|
|
wxPanel.__init__(self, parent, -1)
|
|
|
|
|
2003-03-25 01:35:27 -05:00
|
|
|
data = open(opj('bitmaps/image.png'), "rb").read()
|
2002-02-23 14:59:59 -05:00
|
|
|
stream = StringIO(data)
|
|
|
|
|
|
|
|
bmp = wxBitmapFromImage( wxImageFromStream( stream ))
|
|
|
|
|
|
|
|
wxStaticText(self, -1,
|
|
|
|
"This image was loaded from a Python file-like object:",
|
|
|
|
(15, 15))
|
2003-03-25 01:35:27 -05:00
|
|
|
wxStaticBitmap(self, -1, bmp, (15, 45))#, (bmp.GetWidth(), bmp.GetHeight()))
|
2002-02-23 14:59:59 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#----------------------------------------------------------------------
|
|
|
|
|
|
|
|
def runTest(frame, nb, log):
|
|
|
|
win = TestPanel(nb, log)
|
|
|
|
return win
|
|
|
|
|
|
|
|
#----------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
|
|
overview = """\
|
|
|
|
At long last there is finally a way to load any supported image type
|
|
|
|
directly from any Python file-like object, such as a memory buffer
|
|
|
|
using StringIO. """
|
2003-07-02 19:13:10 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
import sys,os
|
|
|
|
import run
|
|
|
|
run.main(['', os.path.basename(sys.argv[0])])
|
|
|
|
|