test16 Program

Uses

  • program~~test16~~UsesGraph program~test16 test16 module~forimage forimage program~test16->module~forimage module~forcolor forcolor module~forimage->module~forcolor module~forimage_parameters forimage_parameters module~forimage->module~forimage_parameters module~lut lut module~forimage->module~lut module~pnm pnm module~forimage->module~pnm module~forcolor->module~forimage_parameters module~forcolor->module~pnm iso_fortran_env iso_fortran_env module~forimage_parameters->iso_fortran_env module~pnm->module~forimage_parameters

Calls

program~~test16~~CallsGraph program~test16 test16 proc~deallocate_lut format_lut%deallocate_lut program~test16->proc~deallocate_lut proc~export format_lut%export program~test16->proc~export proc~get_num_colors format_lut%get_num_colors proc~export->proc~get_num_colors

Variables

Type Attributes Name Initial
type(format_lut) :: image

Source Code

program test16
    use forimage, only: format_lut
    implicit none
    
    type(format_lut) :: image

    print*,' '
    print'(a)', 'Test 16'

    call image%import(file_name='lut_files/test15',dim_colors=3)
    call image%export(file_name='lut_files/test16')
    
    call image%finalize()

end program test16