| Image-TextMode documentation | Contained in the Image-TextMode distribution. |
Image::TextMode::Format::IDF - read and write IDF files
The IDF format.
Creates a IDF instance.
Returns 'idf'.
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::IDF; use Moose; extends 'Image::TextMode::Format', 'Image::TextMode::Canvas'; has 'header' => ( is => 'rw', isa => 'HashRef', default => sub { { id => '\x{04}1.4', x0 => 0, y0 => 0, x1 => 0, y1 => 0 } } ); sub extensions { return 'idf' } no Moose; __PACKAGE__->meta->make_immutable;
1;