in reply to Using Image::Grabber to grab images from a directory
Greetz#!/usr/bin/perl -w use strict; use HTML::SimpleLinkExtor; use LWP::Simple; my $html = get("http://www.poop.com/pics/index.html"); my $extor = HTML::SimpleLinkExtor->new(); $extor->parse($html); @img_srcs = $extor->img;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Using Image::Grabber to grab images from a directory
by Anonymous Monk on Oct 05, 2003 at 20:31 UTC |