To create the thumb, I see you are using the fit function.
$image = Image::make($original_image->get()) ->fit($thumbWidth, $thumbHeight);
It's fine, but will make the thumb image different from the original image.
Can we use resize function? or is there a way i can do that for thumb @streamtw
To create the thumb, I see you are using the fit function.
$image = Image::make($original_image->get()) ->fit($thumbWidth, $thumbHeight);
It's fine, but will make the thumb image different from the original image. Can we use resize function? or is there a way i can do that for thumb @streamtw