2002.02.25 12:07 "TIFFReadScanline Query...", by Clint Tevlin

2002.02.25 13:11 "RE: TIFFReadScanline Query...", by Michael Payne

tdata_t buf;
unsigned char *tmp;

/* fill-in buf here */
...

tmp = (unsigned char *)buf;

/* now you can process the bytes by using tmp */

--MP