Hi all,
I have the following problem:
I'm using this function
for(int y=0; y<ATargt->Height; y++)
{
BYTE *w = (BYTE*)ATargt->ScanLine[y];
for(int x=0; x<ATargt->Width; x++)
{
BYTE bValue = (BYTE)AImgData->GetPixel(x,y);
*w = bValue;
w++;
for(int i=1; i<AImgData->GetChannelCount; i++)
{
*w = bValue;
++w;
}
}
}
to give Pixeldata to a TIEBitmap.
In ImageEn Vers. 6.3.0 everything works fine and smooth.
If I use ImageEn Vers 8.1.2 the same function needs about 10seconds to finish.
Does anyone know how I can solve this problem in 8.1.2?
Thanks in advance
Alex