Help for this page

Select Code to Download


  1. or download this
    $this->{thumb_panel} = Wx::Panel->new($this->{parent}, -1, wxDefaultPo
    +sition, [320, 240], wxSUNKEN_BORDER);
    $this->{thumb_sb} = Wx::StaticBitmap->new($this->{thumb_panel}, -1, Wx
    +::Bitmap->new("somethumb.jpg", wxBITMAP_TYPE_ANY));
    
  2. or download this
    my $handler = Wx::JPEGHandler->new();
    my $image = Wx::Image->new();
    ...
    if( $bmp->Ok() ) {
        $this->{thumb_sb} = Wx::StaticBitmap->new($this->{thumb_panel}, -1
    +, $bmp);
    }