Recent content by roy437

  1. R

    Fortran I can not read character 0A in a bmp file with Compaq Visual Fortran 6.6C

    Thank you very much to jedishrfu and justsomeguy !
  2. R

    Fortran I can not read character 0A in a bmp file with Compaq Visual Fortran 6.6C

    Here is the calling unit: implicit none integer (4) file_size, hpix, vpix integer (2) k, l, m character *100 fisi character *54 header character *1, allocatable :: r(:), g(:), b(:) open(1, file = fisi) call read_bmp_header(int2(1), file_size, hpix, vpix)
  3. R

    Fortran I can not read character 0A in a bmp file with Compaq Visual Fortran 6.6C

    Here are some of the source code: subroutine read_bmp_header(nfile, file_size, hpix, vpix) ! file_size - in bits ! hpix - numbers horizontal pixels ! vpix - numbers vertical pixels ! reading remains the first pixel implicit none character *54 header character *8 fs...
  4. R

    Fortran I can not read character 0A in a bmp file with Compaq Visual Fortran 6.6C

    I can not read character "0A" in a bmp file with "Compaq Visual Fortran 6.6C" Hi, How to read character "0A" in a bmp file with "Compaq Visual Fortran 6.6C" Here's an excerpt from bmp file: 42 4D 16 02 00 00 00 00 00 00 36 00 00 00 28 00 00 00 10 00 00 00 0A 00 00 00 01 00 18 00 00 00...
  5. R

    Fortran Fixing Fortran DO Command Errors for Visual Fortran (f90)

    Remove (delete) the statement: implicit none
Back
Top