From Code to Community: Sponsoring The Perl and Raku Conference 2025 Learn more
123456789101112131415161718192021 ### load a bitmap from file the put it in a matrixsub new { my $class = shift; $self = { }; bless $self, $class;}sub loadPNGFile { my ($self, $pngfilename) = @_; my $matrix; ### FIXME use png on cpan return $matrix;}1;
### load a bitmap from file the put it in a matrix
sub
new {
my
$class
=
shift
;
$self
= { };
bless
,
}
loadPNGFile {
(
$pngfilename
) =
@_
$matrix
### FIXME use png on cpan
return
1;