Show the code you have that is currently loosing quality
Nov 24, 2022
8
Level 1
laravel image upload
https://image.intervention.io/v2
Help me with the image resizing without losing quality
Level 1
@Snapey thanks, I resolved it this is perfectly working
$value = '150X150'; Image::make($originalImage)->fit(150, 150)->save($originalPath.$filename.''.$random_string.$value.'.'.$filetype); $value = '300X300'; Image::make($originalImage)->fit(300, 300)->save($originalPath.$filename.''.$random_string.$value.'.'.$filetype); $value = '1920X1080'; Image::make($originalImage)->fit(1920, 1080)->save($originalPath.$filename.''.$random_string.$value.'.'.$filetype);
Please or to participate in this conversation.