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 /
File /
[ HOME SHELL ]
Name
Size
Permission
Action
CUR.pm
146
B
-rw-rw-rw-
GIF.pm
2.13
KB
-rw-rw-rw-
ICO.pm
3.38
KB
-rw-rw-rw-
JPEG.pm
1.29
KB
-rw-rw-rw-
PNG.pm
1.25
KB
-rw-rw-rw-
SGI.pm
1.31
KB
-rw-rw-rw-
TIFF.pm
2.6
KB
-rw-rw-rw-
Delete
Unzip
Zip
${this.title}
Close
Code Editor : SGI.pm
package Imager::File::SGI; use 5.006; use strict; use Imager; BEGIN { our $VERSION = "0.05"; require XSLoader; XSLoader::load('Imager::File::SGI', $VERSION); } Imager->register_reader ( type=>'sgi', single => sub { my ($im, $io, %hsh) = @_; $im->{IMG} = i_readsgi_wiol($io, $hsh{page} || 0); unless ($im->{IMG}) { $im->_set_error(Imager->_error_as_msg); return; } return $im; }, ); Imager->register_writer ( type=>'sgi', single => sub { my ($im, $io, %hsh) = @_; $im->_set_opts(\%hsh, "i_", $im); $im->_set_opts(\%hsh, "sgi_", $im); unless (i_writesgi_wiol($io, $im->{IMG})) { $im->_set_error(Imager->_error_as_msg); return; } return $im; }, ); __END__ =head1 NAME Imager::File::ICO - read MS Icon files =head1 SYNOPSIS use Imager; my $img = Imager->new; $img->read(file=>"foo.ico") or die $img->errstr; my @imgs = Imager->read_multi(file => "foo.ico") or die Imager->errstr; $img->write(file => "foo.ico") or die $img->errstr; Imager->write_multi({ file => "foo.ico" }, @imgs) or die Imager->errstr; =head1 DESCRIPTION Imager's MS Icon support is documented in L<Imager::Files>. =head1 AUTHOR Tony Cook <tonyc@cpan.org> =head1 SEE ALSO Imager, Imager::Files. =cut
Close