PNMTextGlyph

from panda3d.core import PNMTextGlyph
class PNMTextGlyph

Bases:

A single glyph in a PNMTextMaker.

Inheritance diagram

Inheritance diagram of PNMTextGlyph

__init__(param0: PNMTextGlyph)
__init__(advance: float)
getAdvance() int

Returns the number of pixels by which the pen should be advanced after rendering this glyph.

getBottom() int

Returns the y coordinate of the bottommost pixel in the glyph.

getHeight() int

Returns the height of the glyph in pixels.

getInteriorFlag(x: int, y: int) bool

Returns true if the indicated pixel represents a pixel in the interior of a hollow font, false otherwise.

getLeft() int

Returns the x coordinate of the leftmost pixel in the glyph.

getRight() int

Returns the x coordinate of the rightmost pixel in the glyph.

getTop() int

Returns the y coordinate of the topmost pixel in the glyph.

getValue(x: int, y: int) float

Returns the value of the indicated pixel of the glyph. The result is in the range [0, 1], where 0 indicates the pixel is not part of the glyph, and 1 indicates it is. Intermediate values are used to represent antialiasing.

getWidth() int

Returns the width of the glyph in pixels.

place(dest_image: PNMImage, xp: int, yp: int, fg: LColor)

Copies the glyph to the indicated destination image at the indicated origin. It colors the glyph pixels the indicated foreground color, blends antialiased pixels with the appropriate amount of the foreground color and the existing background color, and leaves other pixels alone.

place(dest_image: PNMImage, xp: int, yp: int, fg: LColor, interior: LColor)

This flavor of place() also fills in the interior color. This requires that determine_interior was called earlier.