Skip to content
New issue

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

quality of resized image is poor #7

Open
achirkof opened this issue Oct 28, 2015 · 3 comments
Open

quality of resized image is poor #7

achirkof opened this issue Oct 28, 2015 · 3 comments

Comments

@achirkof
Copy link

Hello.
Thanks for the great package. It is simle to implement and use. But only one drowback - poor quality after resize. Is it possible to add some parameter to define image quality?

@achirkof
Copy link
Author

As I understand it is only need to add some smooth to the resized image. I found example how to make image smoothing here http://stackoverflow.com/a/17862644/1709413. But I can't modify package because I know nothing about canvas . Can you add some anti-aliasing to resized image?

@card-b
Copy link

card-b commented Nov 25, 2015

This isn't the best solution, and while it's probably bad practice (it's definitely ugly), you can call the resize method recursively to get the same effect, though it doesn't seem to affect speed that much.

Example:

Resizer.resize(document.getElementById('image-upload').files[0], {width: 800, height: 600, cropSquare: false}, function(error, resultFile1){
    Resizer.resize(resultFile1, {width: 600, height: 450, cropSquare: false}, function(error, resultFile2){
        Resizer.resize(resultFile2, {width: 400, height: 300, cropSquare: false}, function(error, resultFile3){
            uploader.send(resultFile3, function (error, downloadUrl) {
                if (error) {
                // Log service detailed response.
                    console.error('Error uploading', uploader.xhr.response);
                    alert (error);
                }
                else {
                    console.log(downloadUrl);
                }
            });
        });
    }); 
});

@achirkof
Copy link
Author

achirkof commented Dec 1, 2015

@cheqitout-dev thank you for advice. I take a decision to use meteor-files package to upload images(or any type of files) from client side also + imagemagick to manipulate images.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants