Re: getting remote image size with Image::Size & LWP

2003-11-13 Thread Matthew Galaher
I got this working. I found what I was looking for at cpan's site. http://search.cpan.org/dist/Image-Size/ works: #!/usr/bin/perl -w use strict; # to read the files via http that each url points to. my $img = ""; my $the_url = 'http://homepage.mac.com/galaher/images/maul.jpg'; # Since printin

getting remote image size with Image::Size & LWP

2003-11-13 Thread Matthew Galaher
 Thank you for your patience and help bringing me up to speed on how to be a better user of this list. My previous post was my first. I am trying to write a script that will use Image::Size module in conjunction with the LWP module to retrieve the height and width attribute of a gif or jpg on a re

getting remote image sizes with image::size lwp

2003-11-12 Thread Matthew Galaher
I am trying to get the width and height attributes of jpg's and gif's on a remote server. I have found Image::Size and LWP but am unable to put them together so that I can open an http path (e.g. http://wwwfoobar.com/dirname/dirname/dirname/images/111203.gif) and print out the image size. Any help