Kandankarunai has asked for the wisdom of the Perl Monks concerning the following question:
use Tk; use Tk::PNG; my $mw = MainWindow->new ( -title => 'KK', ); $mw->geometry ('200x30'); my $icon = $mw->Photo ( -file => 'valentine_prev.jpg', -format => 'PNG', -width => 32, -height => 32, ); $mw->iconimage ($icon); MainLoop;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Error in icon
by chromatic (Archbishop) on Apr 08, 2011 at 05:43 UTC | |
|
Re: Error in icon
by cdarke (Prior) on Apr 08, 2011 at 08:52 UTC |