Geometrize 1.0
C++ library for geometrizing images into geometric primitives
bitmapexporter.h
Go to the documentation of this file.
1#pragma once
2
3#include <string>
4
5namespace geometrize
6{
7class Bitmap;
8}
9
10namespace geometrize
11{
12
13namespace exporter
14{
15
21std::string exportBMP(const geometrize::Bitmap& bitmapData);
22
23}
24
25}
The Bitmap class is a helper class for working with bitmap data.
Definition: bitmap.h:16
std::string exportBMP(const geometrize::Bitmap &bitmapData)
exportBMP Exports the image data to a RGB888 bitmap image file (BMP).
Definition: bitmapexporter.cpp:55
Definition: bitmap.cpp:8