Dear members,
i have a question.
I created my software (with windows made with wxpython) and with py2exe I embed the icon into the exe.
Since I would like to add the same icon file (or any other image) also as decoration in the window but I don't want to let the icon file outside the "None" zip file that py2exe generates, is there a way to do this?
I mean, may I access a bitmap from the py2exe archive and use it inside a wxpython window?
Sorry but I don't know how else to explain it.
Thanks for your help,
G.

The Python module base64 allows you to convert image data to a string that can be included in your code. Here is an example from vegaseat I saved a while ago:

# playing with wxPython's
# wx.BitmapButton(parent, id, bitmap, pos, size, style)
# for a small image it is best to embed as base64 encoded string
# vega

import wx
import cStringIO
import base64

class MyFrame(wx.Frame):
    def __init__(self, parent, mytitle, data_stream):
        wx.Frame.__init__(self, parent, -1, mytitle, size=(400, 300))

        # convert data_stream to a bitmap
        bmp = wx.BitmapFromImage(wx.ImageFromStream(data_stream))
        # create a BitmapButton
        self.button = wx.BitmapButton(self, wx.ID_ANY, bitmap=bmp,
            pos=(10, 20),
            size=(bmp.GetWidth()+15, bmp.GetHeight()+15))

"""
# the base64 image string has been created with this short
# program, the resulting string is then copied and pasted
import base64
jpg_file = "Btn_next.jpg"
jpg2base64string = base64.encodestring(open(jpg_file,"rb").read())
print "Btn_next_jpg_b64='''\\\n" + jpg2base64string + "'''"
"""

Btn_next_jpg_b64='''\
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
DW1YpPZVfj4R/9k=
'''

# convert to jpg image bytes
jpg_bytes = base64.b64decode(Btn_next_jpg_b64)
# convert image bytes to data stream
data_stream = cStringIO.StringIO(jpg_bytes)

app = wx.App(0)
caption = 'wx.BitmapButton() with b64 image'
MyFrame(None, caption, data_stream).Show()
app.MainLoop()
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.