Size: 661
Comment: missing edit-log entry for this revision
|
Size: 1269
Comment: missing edit-log entry for this revision
|
Deletions are marked like this. | Additions are marked like this. |
Line 1: | Line 1: |
Formats and Conversions | == Formats and Conversions == |
Line 13: | Line 13: |
Using dynamic bitmaps (wxBitmapFromData) | == Using dynamic bitmaps (wxBitmapFromData) == |
Line 19: | Line 19: |
Drawing Bitmaps to Screen/Printer Contexts | === Example === This example shows the creation of a bitmap using a Numeric Python array as the data source for a {{{wxImage/wxBitmap}}}. Note that Numeric uses reversed column-row ordering compared to wxPython, so you'll need to make sure that you generate images using height, width, not width, height coordinates. {{{ 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() }}} == Drawing Bitmaps to Screen/Printer Contexts == |
Line 23: | Line 35: |
Masks and Transparency/Alpha | == Masks and Transparency/Alpha == |
Formats and Conversions
- Conversions among wxImage, wxBitmap, wxCursor, wxIcon Embedding images in code as strings, conversion to/from strings Using PIL with wxPython Using Numeric with wxPython for Images Animated Icons (are these possible in wxPython?)
Using dynamic bitmaps (wxBitmapFromData)
- Run-time generation of images Using device contexts to write into wxBitmaps
Example
This example shows the creation of a bitmap using a Numeric Python array as the data source for a wxImage/wxBitmap. Note that Numeric uses reversed column-row ordering compared to wxPython, so you'll need to make sure that you generate images using height, width, not width, height coordinates.
{{{ 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()
}}}
Drawing Bitmaps to Screen/Printer Contexts
- This is basically covered in the demo, but it's part of the topic.
Masks and Transparency/Alpha
- Bitmap masks (from the demo) Alpha-blending (is this even possible?)