PHP 8.1.33
Preview: ImageDocument.php Size: 1.42 KB
/home/jambtst2015/9jahookups.com/libraries/src/Document/ImageDocument.php

<?php
/**
 * Joomla! Content Management System
 *
 * @copyright  (C) 2012 Open Source Matters, Inc. <https://www.joomla.org>
 * @license    GNU General Public License version 2 or later; see LICENSE.txt
 */

namespace Joomla\CMS\Document;

\defined('JPATH_PLATFORM') or die;

use Joomla\CMS\Factory;

/**
 * ImageDocument class, provides an easy interface to output image data
 *
 * @since  3.0.0
 */
class ImageDocument extends Document
{
	/**
	 * Class constructor
	 *
	 * @param   array  $options  Associative array of options
	 *
	 * @since   3.0.0
	 */
	public function __construct($options = array())
	{
		parent::__construct($options);

		// Set mime type
		$this->_mime = 'image/png';

		// Set document type
		$this->_type = 'image';
	}

	/**
	 * Render the document.
	 *
	 * @param   boolean  $cache   If true, cache the output
	 * @param   array    $params  Associative array of attributes
	 *
	 * @return  string  The rendered data
	 *
	 * @since   3.0.0
	 */
	public function render($cache = false, $params = array())
	{
		// Get the image type
		$type = Factory::getApplication()->input->get('type', 'png');

		switch ($type)
		{
			case 'jpg':
			case 'jpeg':
				$this->_mime = 'image/jpeg';
				break;
			case 'gif':
				$this->_mime = 'image/gif';
				break;
			case 'png':
			default:
				$this->_mime = 'image/png';
				break;
		}

		$this->_charset = null;

		parent::render($cache, $params);

		return $this->getBuffer();
	}
}

Directory Contents

Dirs: 3 × Files: 16

Name Size Perms Modified Actions
Feed DIR
- drwxr-xr-x 2021-08-23 19:07:08
Edit Download
- drwxr-xr-x 2021-08-23 19:07:08
Edit Download
Renderer DIR
- drwxr-xr-x 2021-08-23 19:07:08
Edit Download
24.47 KB lrw-r--r-- 2021-08-23 19:07:08
Edit Download
1.44 KB lrw-r--r-- 2021-08-23 19:07:08
Edit Download
3.22 KB lrw-r--r-- 2021-08-23 19:07:08
Edit Download
2.38 KB lrw-r--r-- 2021-08-23 19:07:08
Edit Download
1.14 KB lrw-r--r-- 2021-08-23 19:07:08
Edit Download
4.24 KB lrw-r--r-- 2021-08-23 19:07:08
Edit Download
21.04 KB lrw-r--r-- 2021-08-23 19:07:08
Edit Download
1.42 KB lrw-r--r-- 2021-08-23 19:07:08
Edit Download
3.41 KB lrw-r--r-- 2021-08-23 19:07:08
Edit Download
2.20 KB lrw-r--r-- 2021-08-23 19:07:08
Edit Download
5.18 KB lrw-r--r-- 2021-08-23 19:07:08
Edit Download
4.00 KB lrw-r--r-- 2021-08-23 19:07:08
Edit Download
2.54 KB lrw-r--r-- 2021-08-23 19:07:08
Edit Download
1.06 KB lrw-r--r-- 2021-08-23 19:07:08
Edit Download
753 B lrw-r--r-- 2021-08-23 19:07:08
Edit Download
2.51 KB lrw-r--r-- 2021-08-23 19:07:08
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).