We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
$image = Image::make($img->path()); $image->save($img_name, 70);
Above piece of code is working fine for jpg images but when i upload png image its size is increasing. Am I doing anything wrong or it is an issue?
The text was updated successfully, but these errors were encountered:
Same issue here I'm uploading an png at 29.9MB
and I'm doing that
$manager = new ImageManager([ 'driver' => 'imagick', ]); $img = $manager->make($absolutePath); $img->save($absolutePath, 10);
and the final weight is 34,6MB
Sorry, something went wrong.
same issue version: 2.7.2
Error still exists... My "minified" images have a bigger filesize even though I resized images bei 70%. Any ideas how to fix?
Duplicate of #632
No branches or pull requests
$image = Image::make($img->path());
$image->save($img_name, 70);
Above piece of code is working fine for jpg images but when i upload png image its size is increasing. Am I doing anything wrong or it is an issue?
The text was updated successfully, but these errors were encountered: