Page 1 of 1

CMSMS and retina displays

Posted: Sun Jan 25, 2015 5:44 pm
by urheat
Is there a module for handling retina images? Or what retina image technique would you prefer using with CMSMS?

Re: CMSMS and retina displays

Posted: Thu Feb 05, 2015 3:43 am
by hexdj
I think you could use a combination of Javascript and, if the pixel ratio > 1 then compress use originals (since the highest res would be the ones to be used for retina), if not, then resize them with CGSmartImage by 50%. I haven't done it myself but that's the general idea.

Re: CMSMS and retina displays

Posted: Thu Feb 05, 2015 9:20 am
by oliverseddon
I use this, pretty simple method.

http://retina-images.complexcompulsions.com

Re: CMSMS and retina displays

Posted: Thu Feb 05, 2015 11:55 am
by urheat
Thanks to all! I like especially the server side solution.

At the moment we are working on a website and using some SVG images in UI. SVG support seems to be quite good nowadays :)

Re: CMSMS and retina displays

Posted: Fri Feb 06, 2015 9:29 am
by 10010110
urheat wrote:At the moment we are working on a website and using some SVG images in UI.
Is that instead of “retina support” or in addition to it? Because the pixel density doesn’t matter for SVG since it’s vector graphics. So, if you use SVG, you don’t need any “retina display” detection.

Re: CMSMS and retina displays

Posted: Fri Feb 06, 2015 11:27 am
by urheat
10010110 wrote:
urheat wrote:At the moment we are working on a website and using some SVG images in UI.
Is that instead of “retina support” or in addition to it? Because the pixel density doesn’t matter for SVG since it’s vector graphics. So, if you use SVG, you don’t need any “retina display” detection.
Addition of course :)