| Image-TextMode documentation | Contained in the Image-TextMode distribution. |
Image::TextMode::Format::ANSIMation - read and write ANSIMation files
ANSIMation is an pseudo-format whereby the ANSI is displayed at a slow
enough rate so that it appears to animate the image. This module simulates
this by assuming a position(0,0) command is the start of a new "frame" in
the sequence.
Creates a ANSIMation instance.
Returns an empty list.
Brian Cassidy <bricas@cpan.org>
Copyright 2008-2011 by Brian Cassidy
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
| Image-TextMode documentation | Contained in the Image-TextMode distribution. |
package Image::TextMode::Format::ANSIMation; use Moose; extends 'Image::TextMode::Format', 'Image::TextMode::Animation'; use Image::TextMode::Palette::ANSI; has '+palette' => ( default => sub { Image::TextMode::Palette::ANSI->new } ); sub extensions { return } no Moose; __PACKAGE__->meta->make_immutable;
1;