uawdijnntqw1x1x1
IP : 216.73.216.107
Hostname : toronto-dev2
Kernel : Linux toronto-dev2 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64
Disable Function : None :)
OS : Linux
PATH:
/
srv
/
users
/
craft4
/
apps
/
craft4-newsite-space
/
vendor
/
pixelandtonic
/
imagine
/
src
/
Filter
/
Basic
/
Paste.php
/
/
<?php /* * This file is part of the Imagine package. * * (c) Bulat Shakirzyanov <mallluhuct@gmail.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Imagine\Filter\Basic; use Imagine\Exception\InvalidArgumentException; use Imagine\Filter\FilterInterface; use Imagine\Image\ImageInterface; use Imagine\Image\PointInterface; /** * A paste filter. */ class Paste implements FilterInterface { /** * @var \Imagine\Image\ImageInterface */ private $image; /** * @var \Imagine\Image\PointInterface */ private $start; /** * How to paste the image, from 0 (fully transparent) to 100 (fully opaque). * * @var int */ private $alpha; /** * Constructs a Paste filter with given ImageInterface to paste and x, y * coordinates of target position. * * @param \Imagine\Image\ImageInterface $image * @param \Imagine\Image\PointInterface $start * @param int $alpha how to paste the image, from 0 (fully transparent) to 100 (fully opaque) */ public function __construct(ImageInterface $image, PointInterface $start, $alpha = 100) { $this->image = $image; $this->start = $start; $alpha = (int) round($alpha); if ($alpha < 0 || $alpha > 100) { throw new InvalidArgumentException(sprintf('The %1$s argument can range from %2$d to %3$d, but you specified %4$d.', '$alpha', 0, 100, $alpha)); } $this->alpha = $alpha; } /** * {@inheritdoc} * * @see \Imagine\Filter\FilterInterface::apply() */ public function apply(ImageInterface $image) { return $image->paste($this->image, $this->start, $this->alpha); } }
/srv/users/craft4/apps/craft4-newsite-space/vendor/pixelandtonic/imagine/src/Filter/Basic/Paste.php