mirror of
https://github.com/UglyToad/PdfPig.git
synced 2025-04-05 20:55:01 +08:00
Fix typo in CharacterBoundingBox and small optimisation in TrueTypeFont and seal both classes
This commit is contained in:
parent
1660c734e2
commit
1298356f10
@ -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;
|
||||
}
|
||||
|
@ -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; }
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user