/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/ImagineInterface.php (2718B)
* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Imagine\Image; use Imagine\Factory\ClassFactoryAwareInterface; use Imagine\Image\Metadata\MetadataReaderInterface; use Imagine\Image\Palette\Color\ColorInterface; /** * The imagine interface. */ interface ImagineInterface extends ClassFactoryAwareInterface { const VERSION = '1.3.5'; /** * Creates a new empty image with an optional background color. * * @param \Imagine\Image\BoxInterface $size * @param \Imagine\Image\Palette\Color\ColorInterface $color * * @throws \Imagine\Exception\InvalidArgumentException * @throws \Imagine\Exception\RuntimeException * * @return \Imagine\Image\ImageInterface */ public function create(BoxInterface $size, ColorInterface $color = null); /** * Opens an existing image from $path. * * @param string|\Imagine\File\LoaderInterface|mixed $path the file path, a LoaderInterface instance, or an object whose string representation is the image path * * @throws \Imagine\Exception\RuntimeException * * @return \Imagine\Image\ImageInterface */ public function open($path); /** * Loads an image from a binary $string. * * @param string $string * * @throws \Imagine\Exception\RuntimeException * * @return \Imagine\Image\ImageInterface */ public function load($string); /** * Loads an image from a resource $resource. * * @param resource $resource * * @throws \Imagine\Exception\RuntimeException * * @return \Imagine\Image\ImageInterface */ public function read($resource); /** * Constructs a font with specified $file, $size and $color. * * The font size is to be specified in points (e.g. 10pt means 10) * * @param string $file * @param int $size * @param \Imagine\Image\Palette\Color\ColorInterface $color * * @return \Imagine\Image\FontInterface */ public function font($file, $size, ColorInterface $color); /** * Set the object to be used to read image metadata. * * @param \Imagine\Image\Metadata\MetadataReaderInterface $metadataReader * * @return $this */ public function setMetadataReader(MetadataReaderInterface $metadataReader); /** * Get the object to be used to read image metadata. * * @return \Imagine\Image\Metadata\MetadataReaderInterface */ public function getMetadataReader(); }