View file phpBB3/vendor/marc1706/fast-image-size/lib/Type/TypeWbmp.php

File size: 1.51Kb
<?php

/**
 * fast-image-size image type wbmp
 * @package fast-image-size
 * @copyright (c) Marc Alexander <admin@m-a-styles.de>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

namespace FastImageSize\Type;

class TypeWbmp extends TypeBase
{
	/**
	 * {@inheritdoc}
	 */
	public function getSize($filename)
	{
		$data = $this->fastImageSize->getImage($filename, 0, self::LONG_SIZE);

		// Check if image is WBMP
		if ($data === false || !$this->validWBMP($data))
		{
			return;
		}

		$size = unpack('Cwidth/Cheight', substr($data, self::SHORT_SIZE, self::SHORT_SIZE));

		// Check if dimensions are valid. A file might be recognised as WBMP
		// rather easily (see extra check for JPEG2000).
		if (!$this->validDimensions($size))
		{
			return;
		}

		$this->fastImageSize->setSize($size);
		$this->fastImageSize->setImageType(IMAGETYPE_WBMP);
	}

	/**
	 * Return if supplied data might be part of a valid WBMP file
	 *
	 * @param bool|string $data
	 *
	 * @return bool True if data might be part of a valid WBMP file, else false
	 */
	protected function validWBMP($data)
	{
		return ord($data[0]) === 0 && ord($data[1]) === 0 && $data !== substr(TypeJp2::JPEG_2000_SIGNATURE, 0, self::LONG_SIZE);
	}

	/**
	 * Return whether dimensions are valid
	 *
	 * @param array $size Size array
	 *
	 * @return bool True if dimensions are valid, false if not
	 */
	protected function validDimensions($size)
	{
		return $size['height'] > 0 && $size['width'] > 0;
	}
}