> > Do I need to change the http header for transfering image > urls? I get errors
Yes. And what do you mean by 'transfer'? You may want Net::FTP > when I transfer a jpg: > picture cannot be displayed because it contains errors. > Try this: #!/usr/bin/perl -w use strict; use LWP::Simple; print "Content-type: image/gif\n\n"; print get("http://www.google.com/images/logo.gif"); Use warnings and strict to track down errors. HTH DMuey -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]