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
Before upload dpi of the image was 300 but after cropping this got reduced to 96
Any idea how to fix this ?
Here is my config
this.cropperSettings = new CropperSettings(); this.cropperSettings.width = 400; this.cropperSettings.height = 400; this.cropperSettings.croppedWidth = 400; this.cropperSettings.croppedHeight = 400; this.cropperSettings.canvasWidth = 400; this.cropperSettings.canvasHeight = 400; this.cropperSettings.noFileInput = true; this.cropperSettings.fileType = 'image/jpeg' this.imageData = {};
The text was updated successfully, but these errors were encountered:
Have you tried etting: preserveSize: true?
Sorry, something went wrong.
The problem is solved with @cstefanache post. I can confirmed. I suggest to close this issue
this.cropperSettings.preserveSize = true;
No branches or pull requests
Before upload dpi of the image was 300 but after cropping this got reduced to 96
Any idea how to fix this ?
Here is my config
The text was updated successfully, but these errors were encountered: