Formats and Conversions

Dynamic Bitmaps

PIL (Python Imaging Library)

        def GetBitmap( self ):
                import Image
                source = Image.open( r"Z:\mcfport\portfoli\full\claire.jpg", 'r')
                image = apply( wxEmptyImage, source.size )
                image.SetData( source.convert( "RGB").tostring() )
                return image.ConvertToBitmap() # wxBitmapFromImage(image)

Numeric Python

        def GetBitmap( self, width=32, height=32, colour = (0,0,0) ):
                array = Numeric.zeros( (height, width, 3),'c')
                array[:,:,] = colour
                image = wxEmptyImage(width,height)
                image.SetData( array.tostring())
                return image.ConvertToBitmap()# wxBitmapFromImage(image)

Slicing

Examples

        def GetBitmap( self, width=32, height=32, colour = (128,128,128), border=5, borderColour=(255,255,255) ):
                # creates a bitmap with a border
                array = Numeric.zeros( (height, width, 3),'c')
                array[border:-border,border:-border,:] = colour
                array[:border,:,:] = borderColour
                array[-border:,:,:] = borderColour
                array[:,:border,:] = borderColour
                array[:,-border:,:] = borderColour
                image = wxEmptyImage(width,height)
                image.SetData( array.tostring())
                return image.ConvertToBitmap()# wxBitmapFromImage(image)

        def GetBitmap( self ):
                ## Create a 256-level gradiant
                array = Numeric.zeros( (height, width, 3),'c')
                array[:,:,0] = range( 256 )
                image = wxEmptyImage(width,height)
                image.SetData( array.tostring())
                return image.ConvertToBitmap()# wxBitmapFromImage(image)

Screen Capture

from wxPython.wx import *

class TestFrame(wxFrame):
        def __init__( self ):
                wxFrame.__init__( self, NULL, -1, "test")
                sizer = wxBoxSizer( wxVERTICAL )
                self.text = wxTextCtrl( self, -1, "testing" )
                sizer.Add( self.text, 1, wxEXPAND )
                ID = wxNewId()
                sizer.Add( wxButton( self, ID, "ToFile"), 0, wxEXPAND )
                EVT_BUTTON( self, ID, self.OnToFile )
                self.SetAutoLayout(true)
                self.SetSizer( sizer )
                self.Layout()
        def OnToFile( self, event ):
                context = wxPaintDC( self )
                memory = wxMemoryDC( )
                x,y = self.GetClientSizeTuple()
                bitmap = wxEmptyBitmap( x,y, -1 )
                memory.SelectObject( bitmap )
                memory.Blit( 0,0,x,y, context, 0,0)
                memory.SelectObject( wxNullBitmap)
                bitmap.SaveFile( "test.bmp", wxBITMAP_TYPE_BMP )
if __name__ == "__main__":
        class App( wxPySimpleApp):
                def OnInit( self ):
                        TestFrame().Show( 1)
                        return 1
        App().MainLoop()

Drawing Bitmaps to Screen/Printer Contexts

Masks and Transparency/Alpha

NOTE: To edit pages in this wiki you must be a member of the TrustedEditorsGroup.