Fix typo in CharacterBoundingBox and small optimisation in TrueTypeFont and seal both classes

This commit is contained in:
BobLd 2025-02-18 19:58:38 +00:00
parent 1660c734e2
commit 1298356f10
2 changed files with 15 additions and 7 deletions

View File

@ -9,7 +9,7 @@
/// <summary>
/// A TrueType font.
/// </summary>
public class TrueTypeFont
public sealed class TrueTypeFont
{
/// <summary>
/// The font version number.
@ -107,8 +107,12 @@
{
boundingBox = default(PdfRectangle);
if (!TryGetGlyphIndex(characterCode, characterCodeToGlyphId, out var index)
|| TableRegister.GlyphTable == null)
if (TableRegister.GlyphTable == null)
{
return false;
}
if (!TryGetGlyphIndex(characterCode, characterCodeToGlyphId, out var index))
{
return false;
}
@ -139,8 +143,12 @@
{
path = null;
if (!TryGetGlyphIndex(characterCode, characterCodeToGlyphId, out var index)
|| TableRegister.GlyphTable == null)
if (TableRegister.GlyphTable == null)
{
return false;
}
if (!TryGetGlyphIndex(characterCode, characterCodeToGlyphId, out var index))
{
return false;
}

View File

@ -5,7 +5,7 @@
/// <summary>
/// Character bounding box.
/// </summary>
public class CharacterBoundingBox
public sealed class CharacterBoundingBox
{
/// <summary>
/// The glyph bounds.
@ -13,7 +13,7 @@
public PdfRectangle GlyphBounds { get; }
/// <summary>
/// THe width.
/// The width.
/// </summary>
public double Width { get; }