Read the weight from the OS/2 table rather than asking CoreText
The weights reported by CT are only occasionally correlated with the OS/2 weights, and GDI uses the latter.
This commit is contained in:
parent
8e6c4ff3ba
commit
f2b3b69b3f
1 changed files with 22 additions and 62 deletions
|
@ -23,8 +23,8 @@ namespace {
|
||||||
struct FontMatch {
|
struct FontMatch {
|
||||||
NSURL *url;
|
NSURL *url;
|
||||||
NSCharacterSet *codepoints;
|
NSCharacterSet *codepoints;
|
||||||
double weight;
|
int weight;
|
||||||
double width;
|
int width;
|
||||||
bool italic;
|
bool italic;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -34,84 +34,57 @@ void process_descriptor(NSFontDescriptor *font, std::vector<FontMatch>& out) {
|
||||||
if (!url)
|
if (!url)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
NSDictionary *attributes = [font objectForKey:NSFontTraitsAttribute];
|
NSFont *nsfont = [NSFont fontWithDescriptor:font size:10];
|
||||||
double weight = [attributes[NSFontWeightTrait] doubleValue];
|
auto traits = CTFontGetSymbolicTraits((__bridge CTFontRef)nsfont);
|
||||||
double width = [attributes[NSFontWidthTrait] doubleValue];
|
bool italic = !!(traits & kCTFontItalicTrait);
|
||||||
bool italic = [attributes[NSFontSlantTrait] doubleValue] > 0.03;
|
|
||||||
|
|
||||||
// CoreText sometimes reports a slant of zero (or a very small slant)
|
// CoreText sometimes reports a slant of zero (or a very small slant)
|
||||||
// despite the macStyle field indicating that the font is italic, so
|
// despite the macStyle field indicating that the font is italic, so
|
||||||
// double check by reading that field from the ttf
|
// double check by reading that field from the ttf
|
||||||
if (!italic) @autoreleasepool {
|
if (!italic) {
|
||||||
NSFont *nsfont = [NSFont fontWithDescriptor:font size:10];
|
|
||||||
auto data = (__bridge_transfer NSData *)CTFontCopyTable((__bridge CTFontRef)nsfont, kCTFontTableHead, 0);
|
auto data = (__bridge_transfer NSData *)CTFontCopyTable((__bridge CTFontRef)nsfont, kCTFontTableHead, 0);
|
||||||
if (data.length > 45) {
|
if (data.length > 45) {
|
||||||
italic = static_cast<const char *>(data.bytes)[45] & 2;
|
italic = static_cast<const char *>(data.bytes)[45] & 2;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
auto data = (__bridge_transfer NSData *)CTFontCopyTable((__bridge CTFontRef)nsfont, kCTFontTableOS2, 0);
|
||||||
|
if (data.length < 6)
|
||||||
|
return;
|
||||||
|
|
||||||
|
auto bytes = static_cast<const uint8_t *>(data.bytes);
|
||||||
|
int weight = (bytes[4] << 8) + bytes[5];
|
||||||
|
int width = (bytes[6] << 8) + bytes[7];
|
||||||
|
|
||||||
out.push_back({url, [font objectForKey:NSFontCharacterSetAttribute], weight, width, italic});
|
out.push_back({url, [font objectForKey:NSFontCharacterSetAttribute], weight, width, italic});
|
||||||
}
|
}
|
||||||
|
|
||||||
void select_best(CollectionResult& ret, std::vector<FontMatch>& options, double bold,
|
void select_best(CollectionResult& ret, std::vector<FontMatch>& options, int bold,
|
||||||
bool italic, std::vector<int> const& characters) {
|
bool italic, std::vector<int> const& characters) {
|
||||||
if (options.empty())
|
if (options.empty())
|
||||||
return;
|
return;
|
||||||
|
|
||||||
// Prioritize fonts with the width closest to normal
|
// Prioritize fonts with the width closest to normal
|
||||||
sort(begin(options), end(options), [](FontMatch const& lft, FontMatch const& rgt) {
|
sort(begin(options), end(options), [](FontMatch const& lft, FontMatch const& rgt) {
|
||||||
return std::abs(lft.width) < std::abs(rgt.width);
|
return std::abs(lft.width - 100) < std::abs(rgt.width - 100);
|
||||||
});
|
});
|
||||||
|
|
||||||
const FontMatch *match = nullptr;
|
const FontMatch *match = nullptr;
|
||||||
|
|
||||||
auto check_weight = [&](FontMatch const& m) {
|
|
||||||
if (m.weight < bold)
|
|
||||||
return false;
|
|
||||||
if (match && m.weight >= match->weight)
|
|
||||||
return false;
|
|
||||||
return true;
|
|
||||||
};
|
|
||||||
auto check_slant = [&](FontMatch const& m) {
|
|
||||||
return (italic && m.italic) || (!italic && !m.italic);
|
|
||||||
};
|
|
||||||
|
|
||||||
// First look for the best valid match
|
|
||||||
for (auto const& m : options) {
|
for (auto const& m : options) {
|
||||||
if (check_slant(m) && check_weight(m))
|
if (italic == m.italic && (!match || std::abs(match->weight - bold + 1) > std::abs(m.weight - bold + 1)))
|
||||||
match = &m;
|
match = &m;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!match) {
|
if (!match) {
|
||||||
// Either none are italic, or none are heavy enough
|
|
||||||
// Just pick the heaviest one (italic if applicable)
|
|
||||||
for (auto const& m : options) {
|
|
||||||
if (!check_slant(m) || (match && m.weight >= match->weight))
|
|
||||||
continue;
|
|
||||||
match = &m;
|
|
||||||
ret.fake_bold = bold > 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!match) {
|
|
||||||
// We want italic but there is none, or we want regular and there is
|
|
||||||
// only italic. Don't complain about fake italic in the latter case.
|
|
||||||
ret.fake_italic = italic;
|
ret.fake_italic = italic;
|
||||||
for (auto const& m : options) {
|
for (auto const& m : options) {
|
||||||
if (check_weight(m))
|
if (!match || std::abs(match->weight - bold + 1) > std::abs(m.weight - bold + 1))
|
||||||
match = &m;
|
match = &m;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!match) {
|
ret.fake_bold = bold > 400 && match->weight < bold;
|
||||||
// No correct weight match even in non-italic, so just pick the heaviest
|
|
||||||
ret.fake_bold = bold > 0;
|
|
||||||
for (auto const& m : options) {
|
|
||||||
if (match && m.weight >= match->weight)
|
|
||||||
continue;
|
|
||||||
match = &m;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
auto& best = *match;
|
auto& best = *match;
|
||||||
ret.paths.push_back(best.url.fileSystemRepresentation);
|
ret.paths.push_back(best.url.fileSystemRepresentation);
|
||||||
|
@ -128,23 +101,10 @@ CollectionResult CoreTextFontFileLister::GetFontPaths(std::string const& facenam
|
||||||
std::vector<int> const& characters) {
|
std::vector<int> const& characters) {
|
||||||
CollectionResult ret;
|
CollectionResult ret;
|
||||||
|
|
||||||
double desired_weight;
|
|
||||||
if (bold == 0)
|
if (bold == 0)
|
||||||
desired_weight = 0;
|
bold = 400;
|
||||||
else if (bold == 1)
|
else if (bold == 1)
|
||||||
desired_weight = 0.4;
|
bold = 700;
|
||||||
else if (bold < 400)
|
|
||||||
desired_weight = -0.4;
|
|
||||||
else if (bold < 500)
|
|
||||||
desired_weight = 0;
|
|
||||||
else if (bold < 600)
|
|
||||||
desired_weight = 0.23;
|
|
||||||
else if (bold < 700)
|
|
||||||
desired_weight = 0.3;
|
|
||||||
else if (bold < 800)
|
|
||||||
desired_weight = 0.4;
|
|
||||||
else
|
|
||||||
desired_weight = 0.62;
|
|
||||||
|
|
||||||
std::vector<FontMatch> fonts;
|
std::vector<FontMatch> fonts;
|
||||||
@autoreleasepool {
|
@autoreleasepool {
|
||||||
|
@ -160,7 +120,7 @@ CollectionResult CoreTextFontFileLister::GetFontPaths(std::string const& facenam
|
||||||
for (NSFontDescriptor *desc in font_collection.matchingDescriptors) {
|
for (NSFontDescriptor *desc in font_collection.matchingDescriptors) {
|
||||||
process_descriptor(desc, fonts);
|
process_descriptor(desc, fonts);
|
||||||
}
|
}
|
||||||
select_best(ret, fonts, desired_weight, italic, characters);
|
select_best(ret, fonts, bold, italic, characters);
|
||||||
}
|
}
|
||||||
|
|
||||||
return ret;
|
return ret;
|
||||||
|
|
Loading…
Reference in a new issue