manpagez: man pages & more
man Term::Size::Perl(3)
Home | html | info | man
Perl(3)               User Contributed Perl Documentation              Perl(3)



NAME

       Term::Size::Perl - Perl extension for retrieving terminal size (Perl
       version)


SYNOPSIS

           use Term::Size::Perl;

           ($columns, $rows) = Term::Size::Perl::chars *STDOUT{IO};
           ($x, $y) = Term::Size::Perl::pixels;


DESCRIPTION

       Yet another implementation of "Term::Size". Now in pure Perl, with the
       exception of a C probe run on build time.

   FUNCTIONS
       chars
               ($columns, $rows) = chars($h);
               $columns = chars($h);

           "chars" returns the terminal size in units of characters
           corresponding to the given filehandle $h.  If the argument is
           omitted, *STDIN{IO} is used.  In scalar context, it returns the
           terminal width.

       pixels
               ($x, $y) = pixels($h);
               $x = pixels($h);

           "pixels" returns the terminal size in units of pixels corresponding
           to the given filehandle $h.  If the argument is omitted, *STDIN{IO}
           is used.  In scalar context, it returns the terminal width.

           Many systems with character-only terminals will return "(0, 0)".


SEE ALSO

       It all began with Term::Size by Tim Goodwin. You may want to have a
       look at:

       Term::Size(3)

       Term::Size::Win32(3)

       Term::Size::ReadKey(3)

       Please reports bugs via GitHub,
       <https://github.com/aferreira/cpan-Term-Size-Perl/issues>.  When
       reporting bugs, it may be helpful to attach the Params.pm generated by
       the probe at build time.


AUTHOR

       Adirano Ferreira, <ferreira@cpan.org>


COPYRIGHT AND LICENSE

       Copyright (C) 2006-2007, 2017-2018 by Adriano Ferreira

       This library is free software; you can redistribute it and/or modify it
       under the same terms as Perl itself.

perl v5.34.1                      2018-02-14                           Perl(3)

term-size-perl 0.31.0 - Generated Tue Aug 20 12:02:48 CDT 2024
© manpagez.com 2000-2025
Individual documents may contain additional copyright information.