
Thread
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