/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/FontInterface.php (1278B)
* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Imagine\Image; /** * The font interface. */ interface FontInterface { /** * Gets the fontfile for current font. * * @return string */ public function getFile(); /** * Gets font's integer point size. * * @return int */ public function getSize(); /** * Gets font's color. * * @return \Imagine\Image\Palette\Color\ColorInterface */ public function getColor(); /** * Gets BoxInterface of font size on the image based on string and angle. * * @param string $string * @param int $angle * * @return \Imagine\Image\BoxInterface */ public function box($string, $angle = 0); /** * Split a string into multiple lines so that it fits a specific width. * * @param string $string The text to be wrapped * @param int $maxWidth The maximum width of the text * @param int $angle * * @return string */ public function wrapText($string, $maxWidth, $angle = 0); }