-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdetect_bmp_dimentions.c
82 lines (67 loc) · 2.15 KB
/
detect_bmp_dimentions.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
/* detect_bmp_dimentions.c
*
* A module of "bmp_matrices" project.
*
* "bmp_matrices" enables to make modifications
* on bitmap images by means of matrices.
*
* Last modified on March 01, 2021.
*
* by Freeman Sun.
* GitHub: https://github.com/GunesOzgur
*/
#include "bmp_matrices.h"
void detect_bmp_dimentions(char* bmpName)
{
// Detects width and hight of a bitmap image
// Arguments:
// bmpName -> name of the BMP file
FILE *fPtr;
if( (fPtr = fopen(bmpName, "rb")) == NULL ) {
MessageBox(0, bmpName, "Not opened!",
MB_ICONEXCLAMATION | MB_OK | MB_SYSTEMMODAL);
return;
}
uint8_t Byte;
// Scan bmp_header
fscanf(fPtr, "%c", &Byte); // Byte 0
fscanf(fPtr, "%c", &Byte); // Byte 1
// Scan bmp_total_size
fscanf(fPtr, "%c", &Byte); // Byte 2
fscanf(fPtr, "%c", &Byte); // Byte 3
fscanf(fPtr, "%c", &Byte); // Byte 4
fscanf(fPtr, "%c", &Byte); // Byte 5
fscanf(fPtr, "%c", &Byte); // Byte 6
fscanf(fPtr, "%c", &Byte); // Byte 7
fscanf(fPtr, "%c", &Byte); // Byte 8
fscanf(fPtr, "%c", &Byte); // Byte 9
// Scan bmp_data_adress
fscanf(fPtr, "%c", &Byte); // Byte 10
fscanf(fPtr, "%c", &Byte); // Byte 11
fscanf(fPtr, "%c", &Byte); // Byte 12
fscanf(fPtr, "%c", &Byte); // Byte 13
// Scan bmp_CoreHeader_size
fscanf(fPtr, "%c", &Byte); // Byte 14
fscanf(fPtr, "%c", &Byte); // Byte 15
fscanf(fPtr, "%c", &Byte); // Byte 16
fscanf(fPtr, "%c", &Byte); // Byte 17
// Scan bmp_width
fscanf(fPtr, "%c", &Byte); // Byte 18
bmp_width = (uint32_t)Byte;
fscanf(fPtr, "%c", &Byte); // Byte 19
bmp_width += (uint32_t)(Byte*0x100);
fscanf(fPtr, "%c", &Byte); // Byte 20
bmp_width += (uint32_t)(Byte*0x10000);
fscanf(fPtr, "%c", &Byte); // Byte 21
bmp_width += (uint32_t)(Byte*0x1000000);
// Scan bmp_height
fscanf(fPtr, "%c", &Byte); // Byte 22
bmp_height = (uint32_t)Byte;
fscanf(fPtr, "%c", &Byte); // Byte 23
bmp_height += (uint32_t)(Byte*0x100);
fscanf(fPtr, "%c", &Byte); // Byte 24
bmp_height += (uint32_t)(Byte*0x10000);
fscanf(fPtr, "%c", &Byte); // Byte 25
bmp_height += (uint32_t)(Byte*0x1000000);
fclose(fPtr);
} // detect_bmp_dimentions