read_image (Image, 'mreut')** Open a new graphics window with the default size limits.dev_open_window_fit_image (Image, 0, 0, -1, -1, WindowHandle1)** Open a new graphics window at the position (50,50) with a* minimum size of 300 x 200 and a maximum size of 600 x 400.dev_open_window_fit_image (Image, 50, 50, [300,600], [200,400], WindowHandle2)
* Open a new graphics window with the default size limits.dev_open_window_fit_size (0, 0, 640, 480, -1, -1, WindowHandle1)** Open a new graphics window at the position (50,50) with a* minimum size of 300 x 200 and a maximum size of 600 x 400.* The window is intended to display a large image with a width* of 2000 pixel and a height of 15000 pixel while preserving the* aspect ratio. Note that in this case the minimum width is* neglected.dev_open_window_fit_size (50, 50, 2000, 15000, [300,600], [400,800], WindowHandle2)