Win32-CaptureIE

 view release on metacpan or  search on metacpan

CaptureIE.pm  view on Meta::CPAN

  my $img = CaptureElement('tab_user_options');
  $img->Write("ie-elem.png");

  QuitIE;

=head1 DESCRIPTION

The package enables you to automatically create screenshots of your
web server pages for the user guide or whatever you need it for. The
best part is that you don't bother yourself with scrolling and object
localization. Just tell the ID of the element and receive an Image::Magick
object. The package will do all the scrolling work, it will take the
screenshots and glue the parts together.

=head1 EXPORT

=over 8

=item :default

C<CaptureArea>

META.yml  view on Meta::CPAN

# http://module-build.sourceforge.net/META-spec.html
#XXXXXXX This is a prototype!!!  It will change in the future!!! XXXXX#
name:         Win32-CaptureIE
version:      1.30
version_from: CaptureIE.pm
installdirs:  site
requires:
    Image::Magick:                 0
    Win32::OLE:                    0
    Win32::Screenshot:             1.2

distribution_type: module
generated_by: ExtUtils::MakeMaker version 6.21

Makefile.PL  view on Meta::CPAN

use 5.006;
use ExtUtils::MakeMaker;
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
WriteMakefile(
    NAME              => 'Win32::CaptureIE',
    VERSION_FROM      => 'CaptureIE.pm', # finds $VERSION
    PREREQ_PM         => {
      Image::Magick	=> 0,
      Win32::Screenshot	=> 1.20,
      Win32::OLE	=> 0,
    }, # e.g., Module::Name => 1.1
    ($] >= 5.005 ?     ## Add these new keywords supported since 5.005
      (ABSTRACT_FROM  => 'CaptureIE.pm', # retrieve abstract from module
       AUTHOR         => 'P.Smejkal <petr.smejkal@seznam.cz>') : ()),
);

README  view on Meta::CPAN


   perl Makefile.PL
   make
   make test
   make install

DEPENDENCIES

This module requires these other modules and libraries:

   Image::Magick
   Win32::Screenshot
   Win32::OLE

SYNOPSIS

      use Win32::CaptureIE;

      StartIE;
      Navigate('http://my.server/page.html');

README  view on Meta::CPAN

      $img->Write("ie-elem.png");

      QuitIE;

DESCRIPTION

The package enables you to automatically create screenshots of your web
server pages for the user guide or whatever you need it for. The best
part is that you don't bother yourself with scrolling and object
localization. Just tell the ID of the element and receive an
Image::Magick object. The package will do all the scrolling work, it
will take the screenshots and glue the parts together.

COPYRIGHT AND LICENCE

Copyright (C) 2004 by P.Smejkal

This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself, either Perl version 5.8.2 or,
at your option, any later version of Perl 5 you may have available.



( run in 0.274 second using v1.01-cache-2.11-cpan-beeb90c9504 )