gif_screen_type Derived Type

type, public :: gif_screen_type


Contents

Source Code


Components

Type Visibility Attributes Name Initial
integer, public :: aspect_ratio
integer, public :: background
integer, public :: bit_pixel
integer, public :: color_map_size
integer, public :: color_resolution
integer, public :: height
logical, public :: use_local_colormap
integer, public :: width

Source Code

type, public :: gif_screen_type
    integer :: aspect_ratio, background
    integer :: bit_pixel                 ! size of colormap
    integer :: color_resolution
    integer :: height, width             ! shape(image) = (/width,height/)
    integer :: color_map_size            ! size of local_colormap
    logical :: use_local_colormap        ! .true. if local color map, else global
end type gif_screen_type