View Raw SPL
/* set a window to display an image with correct aspect ratio */
imstyle(w)
{
        if (argc < 1) w = refwindow(w0);

        /* no scales */
        scales(w, 0);

        /* natural aspect ratio */
        setaspect(w, -1);
}