| AWARE [SYSTEMS] | Imaging expertise for the Delphi developer | |||||||
![]() |
TIFF and LibTiff Mailing List Archive | |||||||
LibTiff Mailing List
TIFF and LibTiff Mailing List Archive Contact
The TIFF Mailing List Homepage |
Thread2008.08.18 16:28 "Re: large number in warning for tif_decoderow", by Richard Nolde>
> I am trying to deal with raw fax data in order to compute the image
> length
> and then to save data in a TIFF file. The "Fax4Decode" gives me the above
> warning. I use this routine in the following manner:
>
> while (fakeFile->tif_rawcc > 0)
> {
> if (!((*fakeFile->tif_decoderow)(fakeFile, (tidataval_t *)rowBuf,
> (tsize_t)lineSize, (tsample_t)0)))
> {
> etc.
>
> It is odd for me that the strip number is so big. I want to get rid of
> this
> warning. Any suggestions?
>
>
The large number is 2^32 - 1, which suggests you may have a signed/unsigned
parameter mismatch in your function call or your warning handler. Check the
types for your arguments.
Richard Nolde
|
|||||||