Geometrize 1.0
C++ library for geometrizing images into geometric primitives
bitmapdataexporter.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 exportBitmapData(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 exportBitmapData(const geometrize::Bitmap &bitmapData)
exportBitmapData Exports the raw image data to a binary dump - just the data as RGBA8888,...
Definition: bitmapdataexporter.cpp:19
Definition: bitmap.cpp:8