Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
<?php /** * This file is part of the Cloudinary PHP package. * * (c) Cloudinary * * F..
Decoded Output download
<?php
/**
* This file is part of the Cloudinary PHP package.
*
* (c) Cloudinary
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Cloudinary\Tag;
use Cloudinary\ArrayUtils;
use Cloudinary\Asset\AssetType;
use Cloudinary\Asset\Video;
use Cloudinary\Configuration\Configuration;
/**
*
* Generates an HTML `<img>` tag based on a captured frame from the specified video source.
*
* @api
*/
class VideoThumbnailTag extends ImageTag
{
/**
* Sets the image of the tag.
*
* @param string|Video $source The public ID of the video.
* @param Configuration|string|array|null $configuration The Configuration source.
*
* @return static
*/
public function image($source, $configuration = null)
{
parent::image(new Video($source, $configuration), $configuration);
$this->image->setFormat($configuration->tag->videoPosterFormat, $configuration->tag->useFetchFormat);
return $this;
}
/**
* Creates a video poster image tag for a video from the provided source and an array of parameters.
*
* @param string $source The public ID of the asset.
* @param array $params The asset parameters.
*
* @return VideoThumbnailTag
*/
public static function fromParams($source, $params = [])
{
$configuration = self::fromParamsDefaultConfig();
ArrayUtils::setDefaultValue($params, 'resource_type', AssetType::VIDEO);
ArrayUtils::setDefaultValue($params, 'format', $configuration->tag->videoPosterFormat);
return parent::fromParams($source, $params);
}
}
?>
Did this file decode correctly?
Original Code
<?php
/**
* This file is part of the Cloudinary PHP package.
*
* (c) Cloudinary
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Cloudinary\Tag;
use Cloudinary\ArrayUtils;
use Cloudinary\Asset\AssetType;
use Cloudinary\Asset\Video;
use Cloudinary\Configuration\Configuration;
/**
*
* Generates an HTML `<img>` tag based on a captured frame from the specified video source.
*
* @api
*/
class VideoThumbnailTag extends ImageTag
{
/**
* Sets the image of the tag.
*
* @param string|Video $source The public ID of the video.
* @param Configuration|string|array|null $configuration The Configuration source.
*
* @return static
*/
public function image($source, $configuration = null)
{
parent::image(new Video($source, $configuration), $configuration);
$this->image->setFormat($configuration->tag->videoPosterFormat, $configuration->tag->useFetchFormat);
return $this;
}
/**
* Creates a video poster image tag for a video from the provided source and an array of parameters.
*
* @param string $source The public ID of the asset.
* @param array $params The asset parameters.
*
* @return VideoThumbnailTag
*/
public static function fromParams($source, $params = [])
{
$configuration = self::fromParamsDefaultConfig();
ArrayUtils::setDefaultValue($params, 'resource_type', AssetType::VIDEO);
ArrayUtils::setDefaultValue($params, 'format', $configuration->tag->videoPosterFormat);
return parent::fromParams($source, $params);
}
}
Function Calls
None |
Stats
MD5 | c724c94241a287ff92d24948766b1485 |
Eval Count | 0 |
Decode Time | 123 ms |