One Hat Cyber Team
Your IP :
172.16.0.254
Server IP :
58.26.163.33
Server :
Windows NT DGPENSV2LPKMN 10.0 build 14393 (Windows Server 2016) AMD64
Server Software :
Apache/2.4.46 (Win64) OpenSSL/1.1.1h PHP/7.3.25
PHP Version :
7.3.25
Buat File
|
Buat Folder
Eksekusi
Dir :
C:
/
xampp7
/
perl
/
vendor
/
lib
/
Imager
/
Filter
/
View File Name :
Flines.pm
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