| Image-TextMode documentation | Contained in the Image-TextMode distribution. |
Image::TextMode::Format::Bin - read and write Bin files
The Bin format is essentially a raw VGA video dump. It is a sequence of character and attribute byte pairs. It holds no width information, so any images over 80 columns will have to be described in an alternate way (i.e. via SAUCE metadata).
Creates a Bin instance.
Returns 'bin'.
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::Bin; use Moose; extends 'Image::TextMode::Format', 'Image::TextMode::Canvas'; sub extensions { return 'bin' } no Moose; __PACKAGE__->meta->make_immutable;
1;