Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 18.227.102.59
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
3 /
endroid /
qr-code /
src /
Writer /
Delete
Unzip
Name
Size
Permission
Date
Action
AbstractWriter.php
2.47
KB
-rw-r--r--
2020-11-27 09:00
BinaryWriter.php
962
B
-rw-r--r--
2020-11-27 09:00
DebugWriter.php
1.62
KB
-rw-r--r--
2020-11-27 09:00
EpsWriter.php
2.05
KB
-rw-r--r--
2020-11-27 09:00
FpdfWriter.php
4.2
KB
-rw-r--r--
2020-11-27 09:00
PngWriter.php
8.27
KB
-rw-r--r--
2020-11-27 09:00
SvgWriter.php
12.55
KB
-rw-r--r--
2021-03-22 09:00
WriterInterface.php
741
B
-rw-r--r--
2020-11-27 09:00
Save
Rename
<?php declare(strict_types=1); /* * (c) Jeroen van den Enden <info@endroid.nl> * * This source file is subject to the MIT license that is bundled * with this source code in the file LICENSE. */ namespace Endroid\QrCode\Writer; use Endroid\QrCode\QrCodeInterface; class EpsWriter extends AbstractWriter { public function writeString(QrCodeInterface $qrCode): string { $data = $qrCode->getData(); $epsData = []; $epsData[] = '%!PS-Adobe-3.0 EPSF-3.0'; $epsData[] = '%%BoundingBox: 0 0 '.$data['outer_width'].' '.$data['outer_height']; $epsData[] = '/F { rectfill } def'; $epsData[] = number_format($qrCode->getBackgroundColor()['r'] / 100, 2, '.', ',').' '.number_format($qrCode->getBackgroundColor()['g'] / 100, 2, '.', ',').' '.number_format($qrCode->getBackgroundColor()['b'] / 100, 2, '.', ',').' setrgbcolor'; $epsData[] = '0 0 '.$data['outer_width'].' '.$data['outer_height'].' F'; $epsData[] = number_format($qrCode->getForegroundColor()['r'] / 100, 2, '.', ',').' '.number_format($qrCode->getForegroundColor()['g'] / 100, 2, '.', ',').' '.number_format($qrCode->getForegroundColor()['b'] / 100, 2, '.', ',').' setrgbcolor'; // Please note an EPS has a reversed Y axis compared to PNG and SVG $data['matrix'] = array_reverse($data['matrix']); foreach ($data['matrix'] as $row => $values) { foreach ($values as $column => $value) { if (1 === $value) { $x = $data['margin_left'] + $data['block_size'] * $column; $y = $data['margin_left'] + $data['block_size'] * $row; $epsData[] = $x.' '.$y.' '.$data['block_size'].' '.$data['block_size'].' F'; } } } return implode("\n", $epsData); } public static function getContentType(): string { return 'image/eps'; } public static function getSupportedExtensions(): array { return ['eps']; } public function getName(): string { return 'eps'; } }