mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-05 18:16:23 +03:00
0029225: Visualization - Font_FTFont::AdvanceX() retrieves kerning value for incorrect characters pair
Fixed FT_Get_Kerning misuse within Font_FTFont::AdvanceX()/Font_FTFont::AdvanceY(). Font_FTFont::loadGlyph() has been corrected to not return TRUE in case if method called with 0 argument second+ time.
This commit is contained in:
parent
bc4a38670e
commit
82be4141b6
@ -35,7 +35,6 @@ Font_FTFont::Font_FTFont (const Handle(Font_FTLibrary)& theFTLib)
|
|||||||
myWidthScaling(1.0),
|
myWidthScaling(1.0),
|
||||||
myLoadFlags (FT_LOAD_NO_HINTING | FT_LOAD_TARGET_NORMAL),
|
myLoadFlags (FT_LOAD_NO_HINTING | FT_LOAD_TARGET_NORMAL),
|
||||||
myIsSingleLine(false),
|
myIsSingleLine(false),
|
||||||
myKernAdvance (new FT_Vector()),
|
|
||||||
myUChar (0U)
|
myUChar (0U)
|
||||||
{
|
{
|
||||||
if (myFTLib.IsNull())
|
if (myFTLib.IsNull())
|
||||||
@ -51,7 +50,6 @@ Font_FTFont::Font_FTFont (const Handle(Font_FTLibrary)& theFTLib)
|
|||||||
Font_FTFont::~Font_FTFont()
|
Font_FTFont::~Font_FTFont()
|
||||||
{
|
{
|
||||||
Release();
|
Release();
|
||||||
delete myKernAdvance;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// =======================================================================
|
// =======================================================================
|
||||||
@ -136,7 +134,7 @@ bool Font_FTFont::loadGlyph (const Standard_Utf32Char theUChar)
|
|||||||
{
|
{
|
||||||
if (myUChar == theUChar)
|
if (myUChar == theUChar)
|
||||||
{
|
{
|
||||||
return true;
|
return myUChar != 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
myGlyphImg.Clear();
|
myGlyphImg.Clear();
|
||||||
@ -239,8 +237,8 @@ float Font_FTFont::LineSpacing() const
|
|||||||
// function : AdvanceX
|
// function : AdvanceX
|
||||||
// purpose :
|
// purpose :
|
||||||
// =======================================================================
|
// =======================================================================
|
||||||
float Font_FTFont::AdvanceX (const Standard_Utf32Char theUChar,
|
float Font_FTFont::AdvanceX (Standard_Utf32Char theUChar,
|
||||||
const Standard_Utf32Char theUCharNext)
|
Standard_Utf32Char theUCharNext)
|
||||||
{
|
{
|
||||||
loadGlyph (theUChar);
|
loadGlyph (theUChar);
|
||||||
return AdvanceX (theUCharNext);
|
return AdvanceX (theUCharNext);
|
||||||
@ -250,49 +248,65 @@ float Font_FTFont::AdvanceX (const Standard_Utf32Char theUChar,
|
|||||||
// function : AdvanceY
|
// function : AdvanceY
|
||||||
// purpose :
|
// purpose :
|
||||||
// =======================================================================
|
// =======================================================================
|
||||||
float Font_FTFont::AdvanceY (const Standard_Utf32Char theUChar,
|
float Font_FTFont::AdvanceY (Standard_Utf32Char theUChar,
|
||||||
const Standard_Utf32Char theUCharNext)
|
Standard_Utf32Char theUCharNext)
|
||||||
{
|
{
|
||||||
loadGlyph (theUChar);
|
loadGlyph (theUChar);
|
||||||
return AdvanceY (theUCharNext);
|
return AdvanceY (theUCharNext);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool Font_FTFont::getKerning (FT_Vector& theKern,
|
||||||
|
Standard_Utf32Char theUCharCurr,
|
||||||
|
Standard_Utf32Char theUCharNext) const
|
||||||
|
{
|
||||||
|
theKern.x = 0;
|
||||||
|
theKern.y = 0;
|
||||||
|
if (theUCharNext != 0 && FT_HAS_KERNING(myFTFace) != 0)
|
||||||
|
{
|
||||||
|
const FT_UInt aCharCurr = FT_Get_Char_Index (myFTFace, theUCharCurr);
|
||||||
|
const FT_UInt aCharNext = FT_Get_Char_Index (myFTFace, theUCharNext);
|
||||||
|
if (aCharCurr == 0 || aCharNext == 0
|
||||||
|
|| FT_Get_Kerning (myFTFace, aCharCurr, aCharNext, FT_KERNING_UNFITTED, &theKern) != 0)
|
||||||
|
{
|
||||||
|
theKern.x = 0;
|
||||||
|
theKern.y = 0;
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
// =======================================================================
|
// =======================================================================
|
||||||
// function : AdvanceX
|
// function : AdvanceX
|
||||||
// purpose :
|
// purpose :
|
||||||
// =======================================================================
|
// =======================================================================
|
||||||
float Font_FTFont::AdvanceX (const Standard_Utf32Char theUCharNext)
|
float Font_FTFont::AdvanceX (Standard_Utf32Char theUCharNext) const
|
||||||
{
|
{
|
||||||
if (myUChar == 0)
|
if (myUChar == 0)
|
||||||
{
|
{
|
||||||
return 0.0f;
|
return 0.0f;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (FT_HAS_KERNING (myFTFace) == 0 || theUCharNext == 0
|
FT_Vector aKern;
|
||||||
|| FT_Get_Kerning (myFTFace, myUChar, theUCharNext, FT_KERNING_UNFITTED, myKernAdvance) != 0)
|
getKerning (aKern, myUChar, theUCharNext);
|
||||||
{
|
return myWidthScaling * fromFTPoints<float> (myFTFace->glyph->advance.x + aKern.x);
|
||||||
return myWidthScaling * fromFTPoints<float> (myFTFace->glyph->advance.x);
|
|
||||||
}
|
|
||||||
return myWidthScaling * fromFTPoints<float> (myKernAdvance->x + myFTFace->glyph->advance.x);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// =======================================================================
|
// =======================================================================
|
||||||
// function : AdvanceY
|
// function : AdvanceY
|
||||||
// purpose :
|
// purpose :
|
||||||
// =======================================================================
|
// =======================================================================
|
||||||
float Font_FTFont::AdvanceY (const Standard_Utf32Char theUCharNext)
|
float Font_FTFont::AdvanceY (Standard_Utf32Char theUCharNext) const
|
||||||
{
|
{
|
||||||
if (myUChar == 0)
|
if (myUChar == 0)
|
||||||
{
|
{
|
||||||
return 0.0f;
|
return 0.0f;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (FT_HAS_KERNING (myFTFace) == 0 || theUCharNext == 0
|
FT_Vector aKern;
|
||||||
|| FT_Get_Kerning (myFTFace, myUChar, theUCharNext, FT_KERNING_UNFITTED, myKernAdvance) != 0)
|
getKerning (aKern, myUChar, theUCharNext);
|
||||||
{
|
return fromFTPoints<float> (myFTFace->glyph->advance.y + aKern.y);
|
||||||
return fromFTPoints<float> (myFTFace->glyph->advance.y);
|
|
||||||
}
|
|
||||||
return fromFTPoints<float> (myKernAdvance->y + myFTFace->glyph->advance.y);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// =======================================================================
|
// =======================================================================
|
||||||
|
@ -114,23 +114,29 @@ public:
|
|||||||
myWidthScaling = theScaleFactor;
|
myWidthScaling = theScaleFactor;
|
||||||
}
|
}
|
||||||
|
|
||||||
//! Compute advance to the next character with kerning applied when applicable.
|
//! Compute horizontal advance to the next character with kerning applied when applicable.
|
||||||
//! Assuming text rendered horizontally.
|
//! Assuming text rendered horizontally.
|
||||||
Standard_EXPORT float AdvanceX (const Standard_Utf32Char theUCharNext);
|
//! @param theUCharNext the next character to compute advance from current one
|
||||||
|
Standard_EXPORT float AdvanceX (Standard_Utf32Char theUCharNext) const;
|
||||||
|
|
||||||
//! Compute advance to the next character with kerning applied when applicable.
|
//! Compute horizontal advance to the next character with kerning applied when applicable.
|
||||||
//! Assuming text rendered horizontally.
|
//! Assuming text rendered horizontally.
|
||||||
Standard_EXPORT float AdvanceX (const Standard_Utf32Char theUChar,
|
//! @param theUChar the character to be loaded as current one
|
||||||
const Standard_Utf32Char theUCharNext);
|
//! @param theUCharNext the next character to compute advance from current one
|
||||||
|
Standard_EXPORT float AdvanceX (Standard_Utf32Char theUChar,
|
||||||
|
Standard_Utf32Char theUCharNext);
|
||||||
|
|
||||||
//! Compute advance to the next character with kerning applied when applicable.
|
//! Compute vertical advance to the next character with kerning applied when applicable.
|
||||||
//! Assuming text rendered vertically.
|
//! Assuming text rendered vertically.
|
||||||
Standard_EXPORT float AdvanceY (const Standard_Utf32Char theUCharNext);
|
//! @param theUCharNext the next character to compute advance from current one
|
||||||
|
Standard_EXPORT float AdvanceY (Standard_Utf32Char theUCharNext) const;
|
||||||
|
|
||||||
//! Compute advance to the next character with kerning applied when applicable.
|
//! Compute vertical advance to the next character with kerning applied when applicable.
|
||||||
//! Assuming text rendered vertically.
|
//! Assuming text rendered vertically.
|
||||||
Standard_EXPORT float AdvanceY (const Standard_Utf32Char theUChar,
|
//! @param theUChar the character to be loaded as current one
|
||||||
const Standard_Utf32Char theUCharNext);
|
//! @param theUCharNext the next character to compute advance from current one
|
||||||
|
Standard_EXPORT float AdvanceY (Standard_Utf32Char theUChar,
|
||||||
|
Standard_Utf32Char theUCharNext);
|
||||||
|
|
||||||
//! @return glyphs number in this font.
|
//! @return glyphs number in this font.
|
||||||
Standard_EXPORT Standard_Integer GlyphsNumber() const;
|
Standard_EXPORT Standard_Integer GlyphsNumber() const;
|
||||||
@ -166,6 +172,11 @@ protected:
|
|||||||
//! Load glyph without rendering it.
|
//! Load glyph without rendering it.
|
||||||
Standard_EXPORT bool loadGlyph (const Standard_Utf32Char theUChar);
|
Standard_EXPORT bool loadGlyph (const Standard_Utf32Char theUChar);
|
||||||
|
|
||||||
|
//! Wrapper for FT_Get_Kerning - retrieve kerning values.
|
||||||
|
Standard_EXPORT bool getKerning (FT_Vector& theKern,
|
||||||
|
Standard_Utf32Char theUCharCurr,
|
||||||
|
Standard_Utf32Char theUCharNext) const;
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
|
|
||||||
Handle(Font_FTLibrary) myFTLib; //!< handle to the FT library object
|
Handle(Font_FTLibrary) myFTLib; //!< handle to the FT library object
|
||||||
@ -177,7 +188,6 @@ protected:
|
|||||||
bool myIsSingleLine; //!< single stroke font flag, FALSE by default
|
bool myIsSingleLine; //!< single stroke font flag, FALSE by default
|
||||||
|
|
||||||
Image_PixMap myGlyphImg; //!< cached glyph plane
|
Image_PixMap myGlyphImg; //!< cached glyph plane
|
||||||
FT_Vector* myKernAdvance; //!< buffer variable
|
|
||||||
Standard_Utf32Char myUChar; //!< currently loaded unicode character
|
Standard_Utf32Char myUChar; //!< currently loaded unicode character
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
14
tests/3rdparty/fonts/B3
vendored
14
tests/3rdparty/fonts/B3
vendored
@ -2,8 +2,7 @@ puts "============"
|
|||||||
puts "OCC24181 Render text as BRep (check alphabet)"
|
puts "OCC24181 Render text as BRep (check alphabet)"
|
||||||
puts "============"
|
puts "============"
|
||||||
puts ""
|
puts ""
|
||||||
pload MODELING
|
pload MODELING VISUALIZATION
|
||||||
pload VISUALIZATION
|
|
||||||
|
|
||||||
vfont add [locate_data_file DejaVuSans.ttf] SansFont
|
vfont add [locate_data_file DejaVuSans.ttf] SansFont
|
||||||
|
|
||||||
@ -18,6 +17,7 @@ asdfghjkl;'
|
|||||||
ASDFGHJKL:"
|
ASDFGHJKL:"
|
||||||
zxcvbnm,./
|
zxcvbnm,./
|
||||||
ZXCVBNM<>?§
|
ZXCVBNM<>?§
|
||||||
|
AVATAR Y.
|
||||||
}
|
}
|
||||||
|
|
||||||
text2brep aBTextN $THE_TEXT -font $THE_FONT_NAME -height $THE_FONT_SIZE -aspect regular -composite off
|
text2brep aBTextN $THE_TEXT -font $THE_FONT_NAME -height $THE_FONT_SIZE -aspect regular -composite off
|
||||||
@ -26,12 +26,12 @@ checkshape aBTextN
|
|||||||
checkshape aBTextC
|
checkshape aBTextC
|
||||||
|
|
||||||
ttranslate aBTextC 220 0 0
|
ttranslate aBTextC 220 0 0
|
||||||
vsetdispmode 1
|
|
||||||
vtop
|
|
||||||
vdisplay aBTextN
|
|
||||||
vdisplay aBTextC
|
|
||||||
|
|
||||||
|
vclear
|
||||||
|
vinit View1
|
||||||
|
vtop
|
||||||
|
vdisplay -dispMode 1 aBTextN aBTextC
|
||||||
vfit
|
vfit
|
||||||
|
|
||||||
vglinfo
|
vglinfo
|
||||||
checkview -screenshot -3d -path ${imagedir}/${test_image}.png
|
vdump ${imagedir}/${casename}.png
|
||||||
|
Loading…
x
Reference in New Issue
Block a user