How to open and read bitmap file without using image library like gd. I need to perform certain calculations on pixel so need to seperate the header from the image
Pixel calculations in bitmap file
Collapse
X
-
Malam SaniTags: None
-
Understand the bitmap layout, then it's a simple case of opening the file (fopen, etc) and reading the data you want (fgets, etc).
Comment