C---------------------------------------------------------------------- subroutine ftgi1b(iunit,nvals,incre,chbuff,status) C Read an array of Integer*1 bytes from the input FITS file. integer nvals,incre,iunit,status,offset character*1 chbuff(nvals) C iunit i fortran unit number C nvals i number of pixels in the i2vals array C incre i byte increment between values C chbuff c*1 array of input byte values C status i output error status if (incre .le. 1)then call ftgcbf(iunit,nvals,chbuff,status) else C offset is the number of bytes to move between each value offset=incre-1 call ftgcbo(iunit,1,nvals,offset,chbuff,status) end if end