| Image-TextMode documentation | Contained in the Image-TextMode distribution. |
Image::TextMode::Format::ANSI - read and write ANSI files
ANSI is a text-based image format that uses escape sequences to give the parser a particular command.
Creates a ANSI instance.
Returns 'ans', 'cia', 'ice'.
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::ANSI; use Moose; extends 'Image::TextMode::Format', 'Image::TextMode::Canvas'; use Image::TextMode::Palette::ANSI; has '+palette' => ( default => sub { Image::TextMode::Palette::ANSI->new } ); sub extensions { return 'ans', 'cia', 'ice' } no Moose; __PACKAGE__->meta->make_immutable;
1;