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


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

Index


Code Index:

NAME

Top

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

DESCRIPTION

Top

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).

METHODS

Top

new( %args )

Creates a Bin instance.

extensions( )

Returns 'bin'.

AUTHOR

Top

Brian Cassidy <bricas@cpan.org>

COPYRIGHT AND LICENSE

Top


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;