Image::TextMode::Format::AVATAR - read and write AVATAR files


Image-TextMode documentation Contained in the Image-TextMode distribution.

Index


Code Index:

NAME

Top

Image::TextMode::Format::AVATAR - read and write AVATAR files

DESCRIPTION

Top

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.

METHODS

Top

new( %args )

Creates a AVATAR instance.

extensions( )

Returns 'avt'.

AUTHOR

Top

Brian Cassidy <bricas@cpan.org>

COPYRIGHT AND LICENSE

Top


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;