| Image-TextMode documentation | Contained in the Image-TextMode distribution. |
Image::TextMode::Format::Tundra - read and write Tundra files
The Tundra format.
Creates a Tundra instance.
Returns 'tnd'.
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::Tundra; use Moose; extends 'Image::TextMode::Format', 'Image::TextMode::Canvas'; has 'header' => ( is => 'rw', isa => 'HashRef', default => sub { { int_id => 24, id => 'TUNDRA24' } } ); has '+render_options' => ( default => sub { { truecolor => 1 } } ); sub extensions { return 'tnd' } no Moose; __PACKAGE__->meta->make_immutable;
1;