Recent content by roy437
-
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 !- roy437
- Post #12
- Forum: Programming and Computer Science
-
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)- roy437
- Post #7
- Forum: Programming and Computer Science
-
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...- roy437
- Post #4
- Forum: Programming and Computer Science
-
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...- roy437
- Thread
- File Fortran Visual
- Replies: 11
- Forum: Programming and Computer Science
-
R
Fortran Fixing Fortran DO Command Errors for Visual Fortran (f90)
Remove (delete) the statement: implicit none- roy437
- Post #3
- Forum: Programming and Computer Science