not able to save an image file using c?

前端 未结 2 2029
名媛妹妹
名媛妹妹 2021-01-27 21:20

I tried to clone a bmp image into another bmp image but the final image would not open.

#include 
#include 
#include 

        
2条回答
  •  野趣味
    野趣味 (楼主)
    2021-01-27 22:01

    BMP images need padding so each line is a multiple of 4 bytes.

    Your lines are not a multiple of 4, so you're missing 2 bytes per line, or 162 in total - which is the difference in size.

提交回复
热议问题