genzoadam
genzoadam
Try to do something like this ```php //get image width and height $image_width = Image::make($image->getRealPath())->width() / 2; $image_height = Image::make($image->getRealPath())->height() / 2; Image::make($image->getRealPath())->text('Genzo Adam', $image_width , $image_height, function($font) { $font->file(storage_path().'/app/public/font/AppleTea-z8R1a.ttf');...
@putrafajarh have u tried width() / 2 & height() / 2 to get the real center pixel of your image? not just align/valign. check the code carefully on my [last...