blob: 6a348a08872587e50758e0cca89759b71934ea7b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
#ifndef DESIGNER_H_CCE34BEB
#define DESIGNER_H_CCE34BEB
#include <random>
#include <string>
#include <Magick++.h>
#include <vector>
class designer {
public:
designer(std::string fontsPath);
Magick::Image generate(
size_t width,
size_t height,
const std::string& text,
std::mt19937& rng) const;
private:
const size_t MIN_FONT_SIZE = 48;
const size_t MAX_FONT_SIZE = 96;
const size_t V_PADDING = 5;
const size_t H_PADDING = 5;
size_t maxWordsInLine(
std::vector<std::string>::const_iterator first,
std::vector<std::string>::const_iterator last,
Magick::Image& textimage) const;
size_t minHeightRequired(
std::vector<std::string>::const_iterator first,
std::vector<std::string>::const_iterator last,
Magick::Image& textimage) const;
std::vector<std::string> fonts;
};
#endif /* end of include guard: DESIGNER_H_CCE34BEB */
|