I’m trying to get all images to be filtered by default (such as resize), so I ran this experiment:
I have changed user/config/media.yaml to include
types:
defaults:
type: file
thumb: media/thumb.png
mime: application/octet-stream
image:
filters:
default:
- enableProgressive
- [cropResize, 500, 500]
And set
images:
cache_all: true
In user/config/system.yaml, but this seems to have zero effect on any images. I cleared cache, refreshed page, etc… the image caching is working, it’s creating new images, but the [cropResize] filter (or any other filter) don’t seem to be working at all.
Does anybody know how to get images to get filtered (especially resized) by default?
Thanks for any help.