skip to Main Content

Laravel Class Intervention Image not found

I'm new to Laravel, I use Intervention Image on laravel 10.39.0, but it is getting error, Class "InterventionImageFacadesImage" not found This is the code. This is the code. <?php namespace AppHttpControllers; use IlluminateHttpRequest; use InterventionImageFacadesImage; class HomeController extends Controller {…

VIEW QUESTION

PHP Image watermark not support Khmer font Unicode – Photoshop

I'm using https://github.com/Intervention/image in my laravel Project to generate a watermark on the image. I download and use fonts from https://fonts.google.com and https://github.com/osify/cambodianfonts/tree/master/Unicode/Compartible-with-Photoshop-CS3 Both not working. I wrote code $textFont = public_path('Khmer/Khmer-Regular.ttf'); $template = Image::make($this->disk->path($user->avatar)); $text = "កម្ពុជា"; $template->text($text, 190,…

VIEW QUESTION
Back To Top
Search