Formats and Conversions

Using dynamic bitmaps (wxBitmapFromData)

Example

        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()

To assign a single colour to the entire image:  array[:,:] = (r,g,b)  . To assign a value to the entire red bit plane:  array[:,:,0] = 255  . To assign a colour to the first row:  array[ 0 ] = (r,g,b )  .

        def GetBitmap( self, width=32, height=32, colour = (128,128,128), border=5, borderColour=(255,255,255) ):
                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()

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.