NAME
Graphics::DZI::A4 - DeepZoom Image Pyramid Generation, specifically for documents
SYNOPSIS
use Graphics::DZI::A4;
$Graphics::DZI::log ->level ($loglevel);
$Graphics::DZI::A4::log->level ($loglevel);
my $dzi = new Graphics::DZI::A4 (A4s => \@images,
overlap => $overlap,
tilesize => $tilesize,
path => './',
prefix => 'xxx',
'format' => $format,
);
use File::Slurp;
write_file ('xxx.xml', $dzi->descriptor );
$dzi->iterate ();
DESCRIPTION
This subclass of Graphics::DZI::Files is specifically though for images covering document pages. While it is named A4
, this is mostly historical; as long as all your images have the same dimensions, this package should.
The idea is that the whole document (the set of images) forms a large image, the individual images organized in a square fashion (1x1, 2x2, 4x4, ...). At the highest zoom level of course all pages will be visible. But if you zoom out, then not only the pages get smaller. Also the pages shown will be reduced, so that at the smallest zoom level only the first page is visible.
INTERFACE
Constructor
Other than the superclass Graphics::DZI::Files this class takes an array (reference) to a list of images.
Methods
- iterate
-
This iterate honors the fact that we are dealing with a set of documents, not ONE large image.
- descriptor
-
Also the descriptor generation is a bit special.
AUTHOR
Robert Barta, <drrho at cpan.org>
COPYRIGHT & LICENSE
Copyright 2010 Robert Barta, all rights reserved.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.