From Code to Community: Sponsoring The Perl and Raku Conference 2025 Learn more

package GFX-Tools;
use 5.034000;
use strict;
require Exporter;
use AutoLoader qw(AUTOLOAD);
our @ISA = qw(Exporter);
# Items to export into callers namespace by default. Note: do not export
# names by default without a very good reason. Use EXPORT_OK instead.
# Do not simply export all your public functions/methods/constants.
# This allows declaration use GFX-Tools ':all';
# If you do not need this, moving things directly into @EXPORT or @EXPORT_OK
# will save memory.
our %EXPORT_TAGS = ( 'all' => [ qw(
) ] );
our @EXPORT_OK = ( @{ $EXPORT_TAGS{'all'} } );
our @EXPORT = qw(
);
our $VERSION = '0.1.1';
# Preloaded methods go here.
# Autoload methods go after =cut, and are processed by the autosplit program.
1;
__END__
# Below is stub documentation for your module. You'd better edit it!
=head1 NAME
GFX-Tools - several command line graphics tools
=head1 SYNOPSIS
use GFX-Tools;
=head1 DESCRIPTION
A Graphics Tools system for hacking files e.g. for ROMs (has png support as an
external module)
API : *Filter* .pm files
=head2 EXPORT
=head1 SEE ALSO
=head1 AUTHOR
Kobold Wizard Johan, E<lt>koboldwiz@cpan.orgE<gt>
=head1 COPYRIGHT AND LICENSE
Copyright (C) 2022 by koboldwiz
This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself, either Perl version 5.34.0 or,
at your option, any later version of Perl 5 you may have available.
=cut