| Image-TextMode documentation | Contained in the Image-TextMode distribution. |
Image::TextMode::Format::AVATAR - read and write AVATAR files
AVATAR stands for Advanced Video Attribute Terminal Assembler and Recreator. By using shorter, binary-based "escape codes" the AVATAR format generally produces smaller files in comparison to ANSI-standard files.
Creates a AVATAR instance.
Returns 'avt'.
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::AVATAR; use Moose; extends 'Image::TextMode::Format', 'Image::TextMode::Canvas'; sub extensions { return 'avt' } no Moose; __PACKAGE__->meta->make_immutable;
1;