I’m creating a gallery similar to the cookbook example but find myself unable to retrieve the URL of the original image after having called methods on the object.
I tried the .url(false) approach suggested in the media section, but this returns a URL to a compressed version of my file, not the path to my original file that image.url returns before being tempered with.
1. {{ image.url }} | {{ image.cropZoom(250, 250).url }} -> original | cropped
2. {{ image.cropZoom(250, 250).url }} | {{ image.url }} -> cropped | compressed-original
3. {{ image.cropZoom(250, 250).url }} | {{ image.url(false) }} -> cropped | compressed-original
4. {{ image.cropZoom(250, 250).url(false) }} | {{ image.url }} -> cropped | cropped
What’s the deal with that?