|
델파이 소스코드..
imgArr, imgArr1 : Array of array of byte;
SetLength(imgArr,BMP.Height,BMP.Width); //배열 크기 정함
위 코드를 빌더로 바꾸려는데요..
byte **imgArr, **imgArr1;
// byte imgArr[][], imgArr1[][];
// imgArr = new byte[BMP->Height][BMP->Width];
// imgArr = new TByteArray[BMP->Height][BMP->Width];
잘 모르겠네요;;
Array of array of byte 이게 뭔 뜻인지;;
|