使用C / x86-64混合编程的#BMP图像旋转
ŁUKASZSTANISZEWSKI
I.如何:
将.BMP(黑白)图像文件添加到主要目录
在project.c文件中更改文件名:
int main(int argc, char* argv[])
{
imgInfo* pInfo;
if (sizeof(bmpHdr) != 62)
{
printf("Change compilation options so as bmpHdr struct size is 62 bytes.\n");
return 1;
}
if((pInfo = readBMP("eiti.bmp"))!=0) // <---- HERE
{
allocate_for_output(pInfo);
change_headder(pInfo)
2021-03-08 11:05:19
10KB
C
1