diff --git a/src/Font/Font_FTFont.cxx b/src/Font/Font_FTFont.cxx index f4d203b12d..86000a9388 100755 --- a/src/Font/Font_FTFont.cxx +++ b/src/Font/Font_FTFont.cxx @@ -160,7 +160,7 @@ bool Font_FTFont::RenderGlyph (const Standard_Utf32Char theUChar) FT_Bitmap aBitmap = myFTFace->glyph->bitmap; if (aBitmap.pixel_mode != FT_PIXEL_MODE_GRAY - || aBitmap.buffer == NULL || aBitmap.width <= 0 || aBitmap.rows <= 0) + || aBitmap.buffer == NULL || aBitmap.width == 0 || aBitmap.rows == 0) { return false; } diff --git a/src/Font/Font_FTFont.hxx b/src/Font/Font_FTFont.hxx index 510d36b43e..f4ba85ca8a 100755 --- a/src/Font/Font_FTFont.hxx +++ b/src/Font/Font_FTFont.hxx @@ -171,11 +171,11 @@ public: //! Retrieve glyph bitmap rectangle inline void GlyphRect (Font_FTFont::Rect& theRect) const { - FT_Bitmap aBitmap = myFTFace->glyph->bitmap; + const FT_Bitmap& aBitmap = myFTFace->glyph->bitmap; theRect.Left = float(myFTFace->glyph->bitmap_left); theRect.Top = float(myFTFace->glyph->bitmap_top); - theRect.Right = float(myFTFace->glyph->bitmap_left + aBitmap.width); - theRect.Bottom = float(myFTFace->glyph->bitmap_top - aBitmap.rows); + theRect.Right = float(myFTFace->glyph->bitmap_left + (int )aBitmap.width); + theRect.Bottom = float(myFTFace->glyph->bitmap_top - (int )aBitmap.rows); } protected: