-
Notifications
You must be signed in to change notification settings - Fork 639
This issue was moved to a discussion.
You can continue the conversation there. Go to discussion →
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Add option to disable resaving of images on upload #3287
Comments
We considered adding a
Plus you won’t be able to use the Image Editor or create image transforms, which obviously involve resaving images. Going to leave this issue open for discussion, but as of right now we don’t know of a good way to implement this feature. |
We also have significant issues with Craft trying to clean/resave images. By default it also saves them with a lower quality I think. It was making uploading images very slow as the team had to sit there waiting for it to finish processing an uploaded image. It was also blowing images up from 1.8mb to near 16mb somehow. #2845 (comment) has some code that can disable the image fiddling. Matt at Servd helped us get it working and it sped up our image upload+saving step significantly. It also stopped the massive blowup in image sizes. For Craft 3:
in general.php add:
|
In addition, if there was an option to disable the image editor we would love to have it. Our images are cropped and compressed in our own editor before we upload them so we just want Craft to display the images as provided. Making sure our team cant accidentally edit them in Craft would be a great option to have. |
There's the |
This issue was moved to a discussion.
You can continue the conversation there. Go to discussion →
Description
The issue is that some images we have to upload via the CMS backend (no manual FTP upload possible) look not as intended after the resave of an asset after upload. Some clients need perfect images as they were uploaded.
A solution would be adding an option like
resaveImagesOnUpload
that is set totrue
as default, but we would have the option to disable the resaving and preserving the real images as it was uploaded. This option should be added for Craft 2.Additional info
The text was updated successfully, but these errors were encountered: