ofxMsdfgen/src/Atlas.h

35 lines
778 B
C
Raw Normal View History

2023-02-21 18:41:53 +01:00
#pragma once
#include "ofMain.h"
#include "ofTrueTypeFont.h"
#include <freetype2/freetype/freetype.h>
2023-02-21 18:41:53 +01:00
#include <msdf-atlas-gen/msdf-atlas-gen.h>
#include "conversion.h"
namespace ofxMsdfgen {
struct AtlasSettings {
float maxCornerAngle = 3.0;
float minimumScale = 24.0;
float pixelRange = 2.0;
float miterLimit = 1.0;
#ifdef TARGET_EMSCRIPTEN
int threadCount = 1;
#else
int threadCount = 4;
#endif
2023-02-21 18:41:53 +01:00
};
class Atlas {
public:
Atlas();
~Atlas();
2023-02-21 18:41:53 +01:00
void setup(string _fontPath);
void setup(string _fontPath, AtlasSettings _settings);
bool generate();
const ofImage & getAtlasImage();
AtlasSettings settings;
private:
string fontPath;
ofImage atlasImage;
};
}