insert()
->insert(SergiX44\ImageZen\Image $image, [SergiX44\ImageZen\Draws\Position $position = SergiX44\ImageZen\Draws\Position::CENTER], [?int $x = null], [?int $y = null]): SergiX44\ImageZen\Image
Insert another image on top of the current image.
Parameters
SergiX44\ImageZen\Image $image
: The image to insertSergiX44\ImageZen\Draws\Position $position
: The position where the image should be placed?int $x
: The x-coordinate of the top-left point?int $y
: The y-coordinate of the top-left point
Returns
Instance of SergiX44\ImageZen\Image
.
Example
use SergiX44\ImageZen\Image;
$toInsert = Image::make('path/to/image.jpg');
$image = Image::make('path/to/image.jpg')
->insert($toInsert, \SergiX44\ImageZen\Draws\Position::TOP_RIGHT);