-
-
01 Feb 2022 14:50:45 UTC
- Distribution: GD
- Source (raw)
- Browse (raw)
- Changes
- How to Contribute
- Repository
- Issues (15)
- Testers (1149 / 2 / 0)
- Kwalitee
Bus factor: 3- % Coverage
- License: perl_5
- Activity
24 month- Tools
- Download (258.17KB)
- MetaCPAN Explorer
- Permissions
- Subscribe to distribution
- Permalinks
- This version
- Latest version
- Dependencies
- Math::Trig
- and possibly others
- Reverse dependencies
- CPAN Testers List
- Dependency graph
NAME
GD::Image - Image class for the GD image library
SYNOPSIS
See GD
DESCRIPTION
Supported Image formats:
!NO!SUBS!
print OUT "=item Png\n\n" if $DEFINES =~ /HAVE_PNG/; print OUT "=item Gif\n\n" if $DEFINES =~ /HAVE_GIF/; print OUT "=item Gd\n\n=item Gd2\n\n" if $DEFINES =~ /HAVE_GD2/; print OUT "=item Jpeg\n\n" if $DEFINES =~ /HAVE_JPEG/; print OUT "=item Tiff\n\n" if $DEFINES =~ /HAVE_TIFF/; print OUT "=item Xpm\n\n" if $DEFINES =~ /HAVE_XPM/; print OUT "=item WBMP\n\n" if 1 or $DEFINES =~ /HAVE_WBMP/; print OUT "=item GifAnim\n\n" if $DEFINES =~ /HAVE_ANIMGIF/; print OUT "=item Webp\n\n" if $DEFINES =~ /HAVE_WEBP/; print OUT "=item Heif\n\n" if $DEFINES =~ /HAVE_HEIF/; print OUT "=item Avif\n\n" if $DEFINES =~ /HAVE_AVIF/;
print OUT << '!NO!SUBS!'; =back
Unsupported Image formats:
!NO!SUBS!
print OUT "=item Png\n\n" if $DEFINES !~ /HAVE_PNG/; print OUT "=item Gif\n\n" if $DEFINES !~ /HAVE_GIF/; print OUT "=item Gd\n\n=item Gd2\n\n" if $DEFINES !~ /HAVE_GD2/; print OUT "=item Jpeg\n\n" if $DEFINES !~ /HAVE_JPEG/; print OUT "=item Tiff\n\n" if $DEFINES !~ /HAVE_TIFF/; print OUT "=item Xpm\n\n" if $DEFINES !~ /HAVE_XPM/; print OUT "=item GifAnim\n\n" if $DEFINES !~ /HAVE_ANIMGIF/; print OUT "=item Webp\n\n" if $DEFINES !~ /HAVE_WEBP/; print OUT "=item Heif\n\n" if $DEFINES !~ /HAVE_HEIF/; print OUT "=item Avif\n\n" if $DEFINES !~ /HAVE_AVIF/;
print OUT << '!NO!SUBS!'; =back
See GD
AUTHOR
The GD.pm interface is copyright 1995-2005, Lincoln D. Stein. It is distributed under the same terms as Perl itself. See the "Artistic License" in the Perl source code distribution for licensing terms.
The latest versions of GD.pm are available on CPAN:
http://www.cpan.org
SEE ALSO
GD GD::Polyline, GD::SVG, GD::Simple, Image::Magick
1 POD Error
The following errors were encountered while parsing the POD:
- Around line 87:
You forgot a '=back' before '=head1'
You forgot a '=back' before '=head1'
Module Install Instructions
To install GD, copy and paste the appropriate command in to your terminal.
cpanm GD
perl -MCPAN -e shell install GD
For more information on module installation, please visit the detailed CPAN module installation guide.