save-bmp.h 229 B

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