/var/www/vhosts/ihelp.ro/httpdocs/vendor/imagine/imagine/src/Image
NameSizeModeActions
Fill/-0755rm
Histogram/-0755rm
Metadata/-0755rm
Palette/-0755rm
Point/-0755rm
AbstractFont.php36830644editdlrm
AbstractImage.php72280644editdlrm
AbstractImagine.php26670644editdlrm
AbstractLayers.php21410644editdlrm
Box.php32300644editdlrm
BoxInterface.php19720644editdlrm
FontInterface.php12780644editdlrm
Format.php32230644editdlrm
FormatList.php13780644editdlrm
ImageInterface.php64420644editdlrm
ImagineInterface.php27180644editdlrm
LayersInterface.php26860644editdlrm
ManipulatorInterface.php59140644editdlrm
Point.php21150644editdlrm
PointInterface.php10920644editdlrm
PointSigned.php17430644editdlrm
Profile.php16130644editdlrm
ProfileInterface.php5190644editdlrm
Edit: /var/www/vhosts/ihelp.ro/httpdocs/vendor/imagine/imagine/src/Image/LayersInterface.php (2686B)
* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Imagine\Image; /** * The layers interface. */ interface LayersInterface extends \Iterator, \Countable, \ArrayAccess { /** * Merge layers into the original objects. * * @throws \Imagine\Exception\RuntimeException */ public function merge(); /** * Animates layers. * * @param string $format The output output format * @param int $delay The delay in milliseconds between two frames * @param int $loops The number of loops, 0 means infinite * * @throws \Imagine\Exception\InvalidArgumentException In case an invalid argument is provided * @throws \Imagine\Exception\RuntimeException In case the driver fails to animate * * @return $this */ public function animate($format, $delay, $loops); /** * Coalesce layers. Each layer in the sequence is the same size as the first and composited with the next layer in * the sequence. * * @throws \Imagine\Exception\NotSupportedException * * @return $this */ public function coalesce(); /** * Adds an image at the end of the layers stack. * * @param \Imagine\Image\ImageInterface $image * * @throws \Imagine\Exception\RuntimeException * * @return $this */ public function add(ImageInterface $image); /** * Set an image at offset. * * @param int $offset * @param \Imagine\Image\ImageInterface $image * * @throws \Imagine\Exception\RuntimeException * @throws \Imagine\Exception\InvalidArgumentException * @throws \Imagine\Exception\OutOfBoundsException * * @return $this */ public function set($offset, ImageInterface $image); /** * Removes the image at offset. * * @param int $offset * * @throws \Imagine\Exception\RuntimeException * @throws \Imagine\Exception\InvalidArgumentException * * @return $this */ public function remove($offset); /** * Returns the image at offset. * * @param int $offset * * @throws \Imagine\Exception\RuntimeException * @throws \Imagine\Exception\InvalidArgumentException * * @return \Imagine\Image\ImageInterface */ public function get($offset); /** * Returns true if a layer at offset is preset. * * @param int $offset * * @return bool */ public function has($offset); }