in reply to tk-picture-scramble-puzzle

Yeah, that's easy to do, like eserte shows. I will modify the snippet. :-)

I'm not really a human, but I play one on earth. flash japh

Replies are listed 'Best First'.
Re: Re: tk-picture-scramble-puzzle
by eserte (Deacon) on Apr 20, 2004 at 15:20 UTC
    But I think the existance of Tk::JPEG should be optional, e.g. with these lines:
    eval q{ use Tk::JPEG }; warn "No JPEG support" if $@; eval q{ use Tk::PNG }; warn "No PNG support" if $@; eval q{ use Tk::TIFF }; warn "No TIFF support" if $@;
    with ot without the warnings...