반응형
int imageWidth = 3000;
int imageHiehgt = 3000;
int fileSize = imageWidth * imageHiehgt * sizeof(USHORT);
USHORT* pixelData = new USHORT[imageWidth * imageHiehgt];
memset(pixelData, 0, fileSize);
CString strFilePath;
strFilePath.Format("Test.raw");
FILE* pFile;
fopen_s(&pFile, strFilePath, "wb");
fwrite(pixelData, 1, fileSize, pFile);
fclose(pFile);
반응형
'[====== Development ======] > C++' 카테고리의 다른 글
How to use the C++/CLI library on the MFC (1) | 2023.01.12 |
---|---|
MFC 프로젝트에서 C# 라이브러리를 사용하는 방법 (0) | 2023.01.12 |
System::String에서 Char로 변환 (0) | 2022.09.04 |
vcpkg의 DCMTK 라이브러리 사용시 빌드 에러 문제점 해결 (0) | 2022.05.17 |
[MFC] 멀티 터치 샘플 코드 (0) | 2022.04.12 |