Skip to content
This repository has been archived by the owner on Nov 26, 2017. It is now read-only.

Commit

Permalink
Merge pull request #776 from realityking/image
Browse files Browse the repository at this point in the history
Add JDocumentImage.
  • Loading branch information
LouisLandry committed Feb 22, 2012
2 parents 33c740a + 155c779 commit 929fef6
Showing 1 changed file with 74 additions and 0 deletions.
74 changes: 74 additions & 0 deletions libraries/joomla/document/image/image.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,74 @@
<?php
/**
* @package Joomla.Platform
* @subpackage Document
*
* @copyright Copyright (C) 2005 - 2012 Open Source Matters, Inc. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE
*/

defined('JPATH_PLATFORM') or die;

/**
* DocumentImage class, provides an easy interface to output image data
*
* @package Joomla.Platform
* @subpackage Document
* @since 12.1
*/
class JDocumentImage extends JDocument
{
/**
* Class constructor
*
* @param array $options Associative array of options
*
* @since 12.1
*/
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 The rendered data
*
* @since 12.1
*/
public function render($cache = false, $params = array())
{
// Get the image type
$type = JFactory::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();
return $this->getBuffer();
}
}

0 comments on commit 929fef6

Please sign in to comment.