| Server IP : 127.0.0.1 / Your IP : 216.73.216.48 Web Server : Apache/2.4.58 (Win64) OpenSSL/3.1.3 PHP/8.2.12 System : Windows NT DESKTOP-3H4FHQJ 10.0 build 19045 (Windows 10) AMD64 User : win 10 ( 0) PHP Version : 8.2.12 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : D:/xamppkk/perl/vendor/lib/Imager/Filter/ |
Upload File : |
package Imager::Filter::Flines;
use 5.006;
use strict;
use Imager;
BEGIN {
our $VERSION = "0.04";
require XSLoader;
XSLoader::load('Imager::Filter::Flines', $VERSION);
}
Imager->register_filter(type=>'flines',
callsub => sub { my %hsh = @_; flines($hsh{image}) },
defaults => {},
callseq => [ 'image' ] );
1;
__END__
=head1 NAME
Imager::Filter::Flines - dim alternate lines to emulate a video display
=head1 SYNOPSIS
use Imager;
use Imager::Filter::Flines;
$img->filter(type=>'flines');
=head1 DESCRIPTION
This is an adaption of the C<flines> dynamically loadable filter
provided in dynfilt/ in previous releases of Imager.
This filter has no parameters.
=head1 AUTHOR
Original by Arnar M. Hrafnkelsson.
Adapted by Tony Cook <tonyc@cpan.org>
=head1 SEE ALSO
Imager, Imager::Filters.
=cut