Intel® Fortran Compiler Classic and Intel® Fortran Compiler Developer Guide and Reference
A newer version of this document is available. Customers should click here to go to the newest version.
PUTIMAGE, PUTIMAGE_W
Graphics Subroutines: Transfer the image stored in memory to the screen. These routines are only available for Windows.
Module
USE IFQWIN
CALL PUTIMAGE (x,y,image,action)
CALL PUTIMAGE_W (wx,wy,image,action)
x, y  |  
      (Input) INTEGER(2). Viewport coordinates for upper-left corner of the image when placed on the screen.  |  
     
wx, wy  |  
      (Input) REAL(8). Window coordinates for upper-left corner of the image when placed on the screen.  |  
     
image  |  
      (Input) INTEGER(1). Array of single-byte integers. Stored image buffer.  |  
     
action  |  
      (Input) INTEGER(2). Interaction of the stored image with the existing screen image. One of the following symbolic constants defined in IFQWIN.F90: 
  |  
     
PUTIMAGE places the upper-left corner of the image at the viewport coordinates (x, y). PUTIMAGE_W places the upper-left corner of the image at the window coordinates (wx, wy).
Example
 ! Build as a Graphics App.
 USE IFQWIN
 INTEGER(1), ALLOCATABLE :: buffer(:)
 INTEGER(2) status, x
 INTEGER(4) imsize
 status = SETCOLOR(INT2(4))
 ! draw a circle
 status = ELLIPSE($GFILLINTERIOR,INT2(40),INT2(55),    &
                   INT2(70),INT2(85))
 imsize = IMAGESIZE (INT2(39),INT2(54),INT2(71), &
                   INT2(86))
 ALLOCATE (buffer(imsize))
 CALL GETIMAGE(INT2(39),INT2(54),INT2(71),INT2(86),    &
               buffer)
 ! copy a row of circles beneath it
 DO x = 5 , 395, 35
    CALL PUTIMAGE(x, INT2(90), buffer, $GPSET)
 END DO
 DEALLOCATE(buffer)
 END