When Galleria is in fullscreen mode, I want it to display images pixel-for-pixel, i.e. with no scaling at all.
My initial plan was to do this by both:
fullscreenCrop: false
, because the docs say that, "false will scale down so the entire image fits", andUnfortunately:
Given all this, please can you suggest how I might achieve my objective?
You can prevent scaling by adding these two options:
maxScaleRatio: 1
minScaleRatio: 1
You probably only need the first one to prevent upscale. But the second one prevents downscale as well. Read more: http://galleria.io/docs/options/maxScaleRatio/