Initial commit

This commit is contained in:
Евгений Титаренко 2024-02-29 17:15:12 +03:00
commit 5c69bc1034
4 changed files with 35 additions and 0 deletions

2
.gitignore vendored Normal file
View file

@ -0,0 +1,2 @@
cmake-*
.idea

6
CMakeLists.txt Normal file
View file

@ -0,0 +1,6 @@
cmake_minimum_required(VERSION 3.27)
project(image_test_cpp)
set(CMAKE_CXX_STANDARD 17)
add_executable(image_test_cpp main.cpp)

BIN
elef.bmp Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 MiB

27
main.cpp Normal file
View file

@ -0,0 +1,27 @@
#include <iostream>
#include <cstdint>
#include <filesystem>
#include <fstream>
struct BitmapFileHeader {
char signature[2] = {0, 0};
uint32_t fileSize = 0;
uint16_t reserved1 = 0;
uint16_t reserved2 = 0;
uint32_t imageDataOffset = 0;
};
const std::string FILENAME = "elef.bmp";
int main() {
BitmapFileHeader bitmapFileHeader;
{
std::ifstream ifs(FILENAME, std::ios_base::binary);
ifs.seekg(0, std::ios::beg);
ifs.read((char *) &bitmapFileHeader, 14);
}
std::cout << "Structure:\n" << "Signature: " << std::string(bitmapFileHeader.signature, 2) << "\nFile size: "
<< bitmapFileHeader.fileSize << "\nReserved 1: " << bitmapFileHeader.reserved1 << "\nReserved 2: "
<< bitmapFileHeader.reserved2 << "\nImage data offset: " << bitmapFileHeader.imageDataOffset << std::endl;
return 0;
}