Some checks failed
🔗 GHA / 📊 Static checks (push) Has been cancelled
🔗 GHA / 🤖 Android (push) Has been cancelled
🔗 GHA / 🍏 iOS (push) Has been cancelled
🔗 GHA / 🐧 Linux (push) Has been cancelled
🔗 GHA / 🍎 macOS (push) Has been cancelled
🔗 GHA / 🏁 Windows (push) Has been cancelled
🔗 GHA / 🌐 Web (push) Has been cancelled
14 lines
362 B
C++
14 lines
362 B
C++
|
|
#pragma once
|
|
|
|
#include "BitmapRef.hpp"
|
|
|
|
namespace msdfgen {
|
|
|
|
/// Saves the bitmap as an uncompressed floating-point TIFF file.
|
|
bool saveTiff(const BitmapConstRef<float, 1> &bitmap, const char *filename);
|
|
bool saveTiff(const BitmapConstRef<float, 3> &bitmap, const char *filename);
|
|
bool saveTiff(const BitmapConstRef<float, 4> &bitmap, const char *filename);
|
|
|
|
}
|