msdfgen/core/save-bmp.h

13 lines
229 B
C++

#pragma once
#include "Bitmap.h"
namespace msdfgen {
/// Saves the bitmap as a BMP file.
bool saveBmp(const Bitmap<float> &bitmap, const char *filename);
bool saveBmp(const Bitmap<FloatRGB> &bitmap, const char *filename);
}