Windows NT DGPENSV2LPKMN 10.0 build 14393 (Windows Server 2016) AMD64
Apache/2.4.46 (Win64) OpenSSL/1.1.1h PHP/7.3.25
: 172.16.0.66 | : 172.16.0.254
Cant Read [ /etc/named.conf ]
7.3.25
SYSTEM
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
BLACK DEFEND!
README
+ Create Folder
+ Create File
[ A ]
[ C ]
[ D ]
C: /
xampp7 /
perl /
vendor /
lib /
Imager /
Color /
[ HOME SHELL ]
Name
Size
Permission
Action
Float.pm
2.8
KB
-rw-rw-rw-
Table.pm
19.45
KB
-rw-rw-rw-
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Float.pm
package Imager::Color::Float; use 5.006; use Imager; use strict; our $VERSION = "1.006"; # It's just a front end to the XS creation functions. # Parse color spec into an a set of 4 colors sub _pspec { return (@_,1) if @_ == 3; return (@_ ) if @_ == 4; if ($_[0] =~ /^\#?([\da-f][\da-f])([\da-f][\da-f])([\da-f][\da-f])([\da-f][\da-f])/i) { return (hex($1)/255,hex($2)/255,hex($3)/255,hex($4)/255); } if ($_[0] =~ /^\#?([\da-f][\da-f])([\da-f][\da-f])([\da-f][\da-f])/i) { return (hex($1)/255,hex($2)/255,hex($3)/255,1); } return (); } sub new { shift; # get rid of class name. my @arg = _pspec(@_); return @arg ? new_internal($arg[0],$arg[1],$arg[2],$arg[3]) : (); } sub set { my $self = shift; my @arg = _pspec(@_); return @arg ? set_internal($self, $arg[0],$arg[1],$arg[2],$arg[3]) : (); } sub CLONE_SKIP { 1 } 1; __END__ =head1 NAME Imager::Color::Float - Rough floating point sample color handling =head1 SYNOPSIS $color = Imager::Color->new($red, $green, $blue); $color = Imager::Color->new($red, $green, $blue, $alpha); $color = Imager::Color->new("#C0C0FF"); # html color specification $color->set($red, $green, $blue); $color->set($red, $green, $blue, $alpha); $color->set("#C0C0FF"); # html color specification ($red, $green, $blue, $alpha) = $color->rgba(); @hsv = $color->hsv(); # not implemented but proposed $color->info(); =head1 DESCRIPTION This module handles creating color objects used by Imager. The idea is that in the future this module will be able to handle color space calculations as well. A floating point Imager color consists of up to four components, each in the range 0.0 to 1.0. Unfortunately the meaning of the components can change depending on the type of image you're dealing with: =over =item * for 3 or 4 channel images the color components are red, green, blue, alpha. =item * for 1 or 2 channel images the color components are gray, alpha, with the other two components ignored. =back An alpha value of zero is fully transparent, an alpha value of 1.0 is fully opaque. =head1 METHODS =over 4 =item new This creates a color object to pass to functions that need a color argument. =item set This changes an already defined color. Note that this does not affect any places where the color has been used previously. =item rgba() This returns the red, green, blue and alpha channels of the color the object contains. =item info Calling info merely dumps the relevant color to the log. =item red =item green =item blue =item alpha Returns the respective component as a floating point value typically from 0 to 1.0. =back =head1 AUTHOR Arnar M. Hrafnkelsson, addi@umich.edu And a great deal of help from others - see the C<README> for a complete list. =head1 SEE ALSO Imager(3), Imager::Color. http://imager.perl.org/ =cut
Close