-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathStaticBitmap.py
executable file
·108 lines (78 loc) · 3.17 KB
/
StaticBitmap.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
#!/usr/bin/env python
"""
Simple app that demonstrates how to use a wx.StaticBitmap, specifically
replacing bitmap dynamically.
Note: There needs to be an "Images" directory with one or more jpegs in it in the
current working directory for this to work.
Test most recently on OS-X wxPython 2.9.3.1
MCow: Also On WinXP Pro SP3 32bit at least
classic wx2.8.12.1 - wx.2.9.5.0 & phoenix wx.2.9.5.81 +
But it been reported to work on lots of other platforms/versions.
"""
import os
import wx
print("running wx version:", wx.version())
class TestFrame(wx.Frame):
def __init__(self, *args, **kwargs):
wx.Frame.__init__(self, *args, **kwargs)
# There needs to be an "Images" directory with one or more jpegs in it in the
# current working directory for this to work.
self.jpgs = GetJpgList("./Images") # Get all the jpegs in the Images directory.
self.CurrentJpg = 0
self.MaxImageSize = 200
b = wx.Button(self, -1, "Display next")
b.Bind(wx.EVT_BUTTON, self.DisplayNext)
# Starting with an EmptyBitmap, the real one will get put there
# by the call to .DisplayNext().
if 'phoenix' in wx.version():
bmp = wx.Bitmap(self.MaxImageSize, self.MaxImageSize)
else:
bmp = wx.EmptyBitmap(self.MaxImageSize, self.MaxImageSize)
self.Image = wx.StaticBitmap(self, -1, bmp)
self.DisplayNext()
# Using a Sizer to handle the layout: I never use absolute positioning.
box = wx.BoxSizer(wx.VERTICAL)
box.Add(b, 0, wx.CENTER | wx.ALL, 10)
# Adding stretchable space before and after centers the image.
box.Add((1, 1), 1)
box.Add(self.Image, 0, wx.ALIGN_CENTER_HORIZONTAL | wx.ALL | wx.ADJUST_MINSIZE, 10)
box.Add((1, 1), 1)
self.SetSizerAndFit(box)
self.Bind(wx.EVT_CLOSE, self.OnCloseWindow)
def DisplayNext(self, event=None):
# Load the image.
Img = wx.Image(self.jpgs[self.CurrentJpg], wx.BITMAP_TYPE_JPEG)
# Scale the image, preserving the aspect ratio.
W = Img.GetWidth()
H = Img.GetHeight()
if W > H:
NewW = self.MaxImageSize
NewH = self.MaxImageSize * H / W
else:
NewH = self.MaxImageSize
NewW = self.MaxImageSize * W / H
Img = Img.Scale(NewW, NewH)
# Convert it to a wx.Bitmap, and put it on the wx.StaticBitmap.
self.Image.SetBitmap(Img.ConvertToBitmap())
# You can fit the frame to the image, if you want.
## self.Fit()
## self.Layout()
self.Refresh()
self.CurrentJpg += 1
if self.CurrentJpg > len(self.jpgs) - 1:
self.CurrentJpg = 0
def OnCloseWindow(self, event):
self.Destroy()
def GetJpgList(dir):
jpgs = [f for f in os.listdir(dir) if f[-4:] == ".jpg"]
## print("JPGS are:", jpgs)
return [os.path.join(dir, f) for f in jpgs]
class App(wx.App):
def OnInit(self):
frame = TestFrame(None, -1, "wxBitmap Test", wx.DefaultPosition, (550, 200))
self.SetTopWindow(frame)
frame.Show(True)
return True
if __name__ == "__main__":
app = App(0)
app.MainLoop()