Press Ctrl / CMD + C to copy this to your clipboard.
This post will be reported to the moderators as potential spam to be looked at
Is there a way to compress images uploaded by the client automatically? I can't ask him to do image optimizations himself...
Hi Maarten,
If it's Umbraco 8, then you could take a look at the Tinifier2 package?
https://our.umbraco.com/packages/backoffice-extensions/tinifier2/
If it's Umbraco 9, I'm not aware of any packages that currently do this - that's not to say they don't exist. 😄
Cheers, - Lee
Did you get anywhere with this. I assumed a modern Umbraco CMS should do this as core?? I'm on V9.
You could also do it the way around, return a specific format in your crops! (This is possible since V10 with now has ImageSharp V2)
var cropUrl = blog.GetCropUrl(cropAlias:"Small", furtherOptions:"&format=WebP");
Now all your crops are easily converted to WebP formats.
is working on a reply...
Write your reply to:
Upload image
Image will be uploaded when post is submitted
Compress images automatically
Is there a way to compress images uploaded by the client automatically? I can't ask him to do image optimizations himself...
Hi Maarten,
If it's Umbraco 8, then you could take a look at the Tinifier2 package?
https://our.umbraco.com/packages/backoffice-extensions/tinifier2/
If it's Umbraco 9, I'm not aware of any packages that currently do this - that's not to say they don't exist. 😄
Cheers,
- Lee
Did you get anywhere with this. I assumed a modern Umbraco CMS should do this as core?? I'm on V9.
You could also do it the way around, return a specific format in your crops! (This is possible since V10 with now has ImageSharp V2)
Now all your crops are easily converted to WebP formats.
is working on a reply...