in reply to Re: tk-picture-scramble-puzzle
in thread tk-picture-scramble-puzzle

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...