You can use Intervention to achive this.
https://github.com/Intervention/image
// open an image file $img = Image::make('public/foo.jpg');
// resize image instance $img->resize(320, 240);
// insert a watermark $img->insert('public/watermark.png');
// save image in desired format $img->save('public/bar.jpg');
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community