AWARE [SYSTEMS] Imaging expertise for the Delphi developer
AWare Systems, Imaging expertise for the Delphi developer, Home TIFF and LibTiff Mailing List Archive

LibTiff Mailing List

TIFF and LibTiff Mailing List Archive
August 2003

Previous Thread
Next Thread

Previous by Thread
Next by Thread

Previous by Date
Next by Date

Contact

The TIFF Mailing List Homepage
This list is run by Frank Warmerdam
Archive maintained by AWare Systems



Valid HTML 4.01!



Thread

2003.08.01 20:02 "problems using tiffwritetile", by Pushkar Pradhan
2003.08.03 01:52 "problems using tiffwritetile", by Frank Warmerdam
2003.08.03 02:41 "problems using tiffwritetile", by Pushkar Pradhan

2003.08.01 20:02 "problems using tiffwritetile", by Pushkar Pradhan

I'm not able to write a tiled tiff file. The problem is TIFFWriteTile is not
writing the amount of data being read by TIFFReadTile
TIFFReadTile reads in 16384 bytes but TIFFWriteTile writes out only 2048
bytes.
Can anyone tell what's going wrong? (it's a single band img. and I set the
tags also).

Code:
    for(y = 0; y < imageLength; y += tileLength) {
      for(x = 0; x < imageWidth; x += tileWidth) {
        size = TIFFReadTile(tif, buf, x, y, 0, 0);
        printf("read %d bytes\n", size);
        count++;
        printf("tile: %d\n", count);

        /* RGBTOLHS */
        /*Rgb2Lhs(&bufR, &bufG, &bufB, &L, &H, &S, tileLength, tileWidth);*/
        size = TIFFWriteTile(wtif, buf, x, y, 0, 0);
        printf("written %d bytes\n", size);
        printf("width %d bytes\n", x);
        printf("length %d bytes\n", y      }
    }



Pushkar Pradhan