Resize images when added to Media section
# help-with-umbraco
b
Our client has started to upload image files that are around 20mb, whilst it's great to have high res, this is a little excessive for what we need. The Umbraco media section loads the full image every time, it's a waste of resources in my mind. So, is there an easy way to either: 1) Limit image size when a client tries to upload it 2) Resize the image once uploaded There's ways to do this in code, but wondered if it could be done with configuration. (Umbraco 13)
s
I guess you could hook into the media saving notification and get the source, check the size and resize it, pass that to the obj that is saving I guess https://docs.umbraco.com/umbraco-cms/13.latest/reference/notifications#mediaservicenotifications
4 Views