Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
Thanks#!/usr/bin/perl -w use strict; use Tk; use Tk::JPEG; my $main = MainWindow->new(); my $image = $main->Photo('-format' => 'jpeg', -file => 'http://www.som +ewebsite/photos/image1.jpg'); my $label= $main->Label(-image => $image)->pack(); MainLoop
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: view online jpeg in Tk ?
by zentara (Cardinal) on Sep 11, 2006 at 19:50 UTC | |
by Anonymous Monk on Sep 11, 2006 at 19:58 UTC | |
|
Re: view online jpeg in Tk ?
by hgolden (Pilgrim) on Sep 11, 2006 at 19:29 UTC |