FreeType

[Raku PDF Project] / [Font-FreeType Module] / Font::FreeType

class Font::FreeType - Raku FreeType2 Library Instance

Synopsis

use Font::FreeType;
use Font::FreeType::Face;

my Font::FreeType $freetype .= new;
my Font::FreeType::Face $face = $freetype.face('t/fonts/Vera.ttf');

$face.set-char-size(24, 24, 100, 100);
for $face.glyph-images('ABC') {
    my $outline = .outline;
    my $bitmap = .bitmap;
    # ...
}

Description

A Font::FreeType object must first be created before other objects may be crated. Fort example to load a Font::FreeType::Face object:

use Font::FreeType;
use Font::FreeType::Face;
my Font::FreeType $freetype .= new;
my Font::FreeType::Face $face = $freetype.face('Vera.ttf');

Methods

Unless otherwise stated, all methods will die if there is an error.

new()

Create a new 'instance' of the freetype library and return the object. This is a class method, which doesn't take any arguments. If you only want to load one face, then it's probably not even worth saving the object to a variable:

face()

use Font::FreeType;
use Font::FreeType::Face;
my Font::FreeType $freetype .= new;
my Font::FreeType::Face $face = $freetype.face('Vera.ttf');

Return a Font::FreeType::Face object representing a font face from the specified file or Blob.

If your font is scalable (i.e., not a bit-mapped font) then set the size and resolution you want to see it at, for example 24pt at 100dpi:

$face.set-char-size(24, 24, 100, 100);

The :index option specifies which face to load from the file. It defaults to 0, and since most fonts only contain one face it rarely needs to be provided.

The :load-flags option takes various flags which alter the way glyphs are loaded. The default is usually OK for rendering fonts to bitmap images. When extracting outlines from fonts, be sure to set the FT_LOAD_NO_HINTING flag.

The following load flags are available. They can be combined with the bit-wise OR operator (|). The symbols are exported by the module and so will be available once you do use Font::FreeType.

  • FT_LOAD_DEFAULT

    The same as doing nothing special.

  • FT_LOAD_CROP_BITMAP

    Remove extraneous black bits round the edges of bitmaps when loading embedded bitmaps.

  • FT_LOAD_FORCE_AUTOHINT

    Use FreeType's own automatic hinting algorithm rather than the normal TrueType one. Probably only useful for testing the FreeType library.

  • FT_LOAD_IGNORE_GLOBAL_ADVANCE_WIDTH

    Probably only useful for loading fonts with wrong metrics.

  • FT_LOAD_IGNORE_TRANSFORM

    Don't transform glyphs. This module doesn't yet have support for transformations.

  • FT_LOAD_LINEAR_DESIGN

    Don't scale the metrics.

  • FT_LOAD_NO_AUTOHINT

    Don't use the FreeType auto-hinting algorithm. Hinting with other algorithms (such as the TrueType one) will still be done if possible. Apparently some fonts look worse with the auto-hinter than without any hinting.

    This option is only available with FreeType 2.1.3 or newer.

  • FT_LOAD_NO_BITMAP

    Don't load embedded bitmaps provided with scalable fonts. Bitmap fonts are still loaded normally. This probably doesn't make much difference in the current version of this module, as embedded bitmaps aren't deliberately used.

  • FT_LOAD_NO_HINTING

    Prevents the coordinates of the outline from being adjusted ('grid fitted') to the current size. Hinting should be turned on when rendering bitmap images of glyphs, and off when extracting the outline information if you don't know at what resolution it will be rendered. For example, when converting glyphs to PostScript or PDF, use this to turn the hinting off.

  • FT_LOAD_NO_SCALE

    Don't scale the font's outline or metrics to the right size. This will currently generate bad numbers. To be fixed in a later version.

  • FT_LOAD_PEDANTIC

    Raise errors when a font file is broken, rather than trying to work around it.

  • FT_LOAD_VERTICAL_LAYOUT

    Return metrics and glyphs suitable for vertical layout. This module doesn't yet provide any intentional support for vertical layout, so this probably won't be much use.

version()

Returns the version number of the underlying FreeType library being used. If called in scalar context returns a Version consisting of a number in the format "major.minor.patch".

Authors

Geoff Richards [email protected]

Ivan Baidakou [email protected]

David Warring [email protected] (Raku Port)

Copyright

Copyright 2004, Geoff Richards.

Ported from Perl to Raku by David Warring [email protected] Copyright 2017.

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

Font::FreeType v0.4.0

read font files and render glyphs from Raku using FreeType2

Authors

  • David Warring

License

Artistic-2.0

Dependencies

Method::Also

Test Dependencies

Provides

  • Font::FreeType
  • Font::FreeType::BBox
  • Font::FreeType::BitMap
  • Font::FreeType::CharMap
  • Font::FreeType::Error
  • Font::FreeType::Face
  • Font::FreeType::Glyph
  • Font::FreeType::GlyphImage
  • Font::FreeType::NamedInfo
  • Font::FreeType::Native
  • Font::FreeType::Native::Defs
  • Font::FreeType::Outline
  • Font::FreeType::Raw
  • Font::FreeType::Raw::Defs
  • Font::FreeType::Raw::TT_Sfnt

The Camelia image is copyright 2009 by Larry Wall. "Raku" is trademark of the Yet Another Society. All rights reserved.