| 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 |
Thread2006.08.02 02:09 "Re: How to save in tiff format file?", by Toh KcHi,
sorry to disturb again..
This time round, I have allocated the array
dynamically.
Code:
int nPixels = Gwidth * Gheight;
unsigned char *sImg = NULL;
if (sImg == NULL)
sImg = new unsigned char [nPixels];
But the saved image is still distorted. I think is
proably because of the intialisation of the array
below.
(I have change array to sImg.)
Code:
for (int i = 0; i < Gheight; i++)
for(int j = 0; j < Gwidth; j++)
sImg[i * Gwidth + j] = (unsigned char)(j * i);
Or is it something wrong with the dimension of the
image i am going to save, that why the saved image is
distorted?
Regards
Kc
__________________________________
The World Cup Is Now On Your Favorite Front Page
http://www.yahoo.com.sg
|
|||||||