1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568
|
#! perl
package HarfBuzz::Shaper;
use 5.010001;
use strict;
use warnings;
use Carp;
use Encode;
our $VERSION = '0.031';
require XSLoader;
XSLoader::load('HarfBuzz::Shaper', $VERSION);
=head1 NAME
HarfBuzz::Shaper - Use HarfBuzz for text shaping
=head1 SYNOPSIS
use HarfBuzz::Shaper;
my $hb = HarfBuzz::Shaper->new;
$hb->set_font('LiberationSans.ttf');
$hb->set_size(36);
$hb->set_text("Hello!");
my $info = $hb->shaper;
The result is an array of hashes, one element for each glyph to be typeset.
=head1 DESCRIPTION
HarfBuzz::Shaper is a perl module that provides access to a small
subset of the native HarfBuzz library.
The subset is suitable for typesetting programs that need to deal with
complex languages like Devanagari, Hebrew or Arabic.
This module is intended to be used with module L<Text::Layout>. Feel
free to (ab)use it for other purposes.
Following the above example, the returned info is an array of hashes,
one element for each glyph to be typeset. The hash contains the
following items:
ax: horizontal advance
ay: vertical advance
dx: horizontal offset
dy: vertical offset
g: glyph index in font (CId)
name: glyph name
Note that the number of glyphs does not necessarily match the number
of input characters!
=head1 DISCLAIMER
This module provides a thin interface layer between Perl and the
native HarfBuzz library. It is agnostic with regard to the details of
multi-language typesetting. HarfBuzz has a friendly community to help
you.
L<https://lists.freedesktop.org/mailman/listinfo/harfbuzz>
=head1 METHODS
=head2 $hb = HarfBuzz::Shaper->new( [ options ] )
Creates a new shaper object.
Options:
=over 4
=item *
B<font => > I<font filename>
=item *
B<size => > I<text size>
=back
=cut
sub new {
my ( $pkg, $opts ) = @_;
$opts //= {};
my $self = bless {} => $pkg;
$self->{harfbuzz} = hb_version_string();
$self->{buffer} = hb_buffer_create();
$self->{features} = [];
if ( $opts->{font} ) {
$self->set_font( delete $opts->{font} );
}
if ( $opts->{size} ) {
$self->set_size( delete $opts->{size} );
}
return $self;
}
=head2 $hb->reset( [ I<full> ] )
Reset (clear) the buffer settings for font, size, language, direction
and script. With I<full>, also clears the font cache.
=cut
sub reset {
my ( $self, $full ) = @_;
for ( qw ( font size text language direction script shaped ) ) {
delete $self->{$_};
}
if ( $full ) {
for ( keys %$self ) {
next unless /^(font|face)_/;
delete $self->{$_};
}
hb_buffer_reset( $self->{buffer} );
# So basically we are like freshly created.
}
$self;
}
=head2 $hb->set_font( I<font filename> [ , I<size> ] )
Explicit way to set the font (and, optionally, the size) used for
shaping.
The settings persist across shaper() calls. Call without arguments to
remove the settings.
The font must be a TrueType or OpenType font. Font information is
cached internally, after the first call subsequent calls with the same
font filename are very fast.
=cut
sub set_font {
my ( $self, $fontfile, $size ) = @_;
delete $self->{shaped};
unless ( defined $fontfile or defined $size ) {
delete $self->{font};
delete $self->{size};
return $self;
}
croak("$fontfile: $!\n") unless -s -r $fontfile;
my $blob = hb_blob_create_from_file($fontfile);
my $face = $self->{"face_$fontfile"} //= hb_face_create( $blob, 0 );
$self->{font} = $self->{"font_$fontfile"} //= do {
# hb_font_create should default to OT.
my $font = hb_font_create( $face );
hb_ot_font_set_funcs($font);
$font;
};
$self->set_size($size) if $size;
$self;
}
=head2 $hb->set_size( I<size> )
Explicit way to set the font size used for shaping.
Note that the font size will in general affect details of the
appearance, A 5 point fontsize magnified 10 times is not identical to
50 point font size.
The setting persist across shaper() calls. Call without arguments to
remove the setting.
=cut
sub set_size {
my ( $self, $size ) = @_;
delete $self->{shaped};
unless ( defined $size ) {
delete $self->{size};
return $self;
}
$self->{size} = $size;
$self;
}
=head2 $hb->set_text( I<text> [ , ... ] )
Sets the text to shape. Multiple arguments are concatenated.
Note that the text must be Perl strings.
The setting persist across shaper() calls. Call without arguments to
remove the setting.
=cut
sub set_text {
my ( $self, @text ) = @_;
delete $self->{shaped};
unless ( @_ > 1 and defined $text[0] ) {
delete $self->{text};
return $self;
}
$self->{text} = join( "", @text );
$self;
}
=head2 $hb->set_features( I<feat> [ , ... ] )
Sets persistent features for shaping. Features are strings as described in
L<https://harfbuzz.github.io/harfbuzz-hb-common.html#hb-feature-from-string>
and
L<https://css-tricks.com/almanac/properties/f/font-feature-settings/#values>.
Multiple feature strings may be supplied.
Call without arguments to remove the persistent features.
=cut
sub set_features {
my ( $self ) = shift;
$self->{features} = [];
$self->add_features(@_) if @_ && defined($_[0]);
return $self;
}
=head2 $hb->add_features( I<feat> [ , ... ] )
Just like set_features, but the specified features are I<added> to the
set of persistent features.
=cut
sub add_features {
my ( $self, @features ) = @_;
delete $self->{shaped};
foreach my $feature ( @features ) {
push( @{ $self->{features} },
hb_feature_from_string($feature)
|| croak("Unknown shaper feature: \"$feature\"") );
}
}
=head2 $hb->set_language( I<lang> )
Sets the language for shaping. I<lang> must be a string containing a
valid BCP-47 language code.
The setting persist across shaper() calls. Call without arguments to
remove the setting.
=cut
sub set_language {
my ( $self, $lang ) = @_;
delete $self->{shaped};
unless ( defined $lang ) {
delete $self->{language};
return $self;
}
$self->{language} = $lang;
# This is merely for checking validity;
hb_buffer_set_language( $self->{buffer}, $lang );
}
=head2 $hb->get_language
Returns the language currently set for this shaper, as a string.
When called after a successful shaper() call, it returns the actual
value used by shaper().
=cut
sub get_language {
my ( $self ) = @_;
hb_buffer_get_language( $self->{buffer} );
}
=head2 $hb->set_script( I<script> )
Sets the script (alphabet) for shaping. I<script> must be a string
containing a valid ISO-15924 script code. For example, C<"Latn"> for
the Latin (Western European) script, or C<"Arab"> for arabic script.
If you don't set a script, shaper() will make a guess based on the
text string. This may or may not yield desired results.
The setting persist across shaper() calls. Call without arguments to
remove the setting.
=cut
sub set_script {
my ( $self, $script ) = @_;
delete $self->{shaped};
unless ( defined $script ) {
delete $self->{script};
return $self;
}
$self->{script} = $script;
# This is merely for checking validity;
hb_buffer_set_script( $self->{buffer}, $script );
}
=head2 $hb->get_script
Returns the script currently set for this shaper, as a string.
When called after a successful shaper() call, it returns the actual
value used by shaper().
=cut
sub get_script {
my ( $self ) = @_;
hb_buffer_get_script( $self->{buffer} );
}
=head2 $hb->set_direction( I<dir> )
Sets the direction for shaping. I<dir> must be a string containing a
valid direction setting: LTR (left-to-right), RTL (right-to-left), TTB
(top-to-bottom), or BTT (bottom-to-top).
If you don't set a direction, shaper() will make a guess based on the
text string. This may or may not yield desired results.
The setting persist across shaper() calls. Call without arguments to
remove the setting.
=cut
sub set_direction {
my ( $self, $dir ) = @_;
delete $self->{shaped};
unless ( defined $dir ) {
delete $self->{direction};
return $self;
}
$self->{direction} = $dir;
# This is merely for checking validity;
hb_buffer_set_direction( $self->{buffer}, $dir );
}
=head2 $hb->get_direction
Returns the direction currently set for this shaper, as a string.
When called after a successful shaper() call, it returns the actual
value used by shaper().
=cut
sub get_direction {
my ( $self ) = @_;
hb_buffer_get_direction( $self->{buffer} );
}
=head2 $info = $hb->shaper( [ I<ref to features> ] )
Performs the actual shape operation.
I<features> is a reference to an array of feature strings. The
features will be I<added> to the list of features already set with
set_features/add_features. If the first (or only) feature is C<none>
all current features will be ignored and only subsequent features are
taken into account. Changes apply to this call only, the persistent
set of featutes is B<not> modified.
Upon completion an array of hashes is returned with one element for
each glyph to be rendered.
The hash contains the following items:
ax: horizontal advance
ay: vertical advance
dx: horizontal offset
dy: vertical offset
g: glyph index in font (CId)
name: glyph name
Note that the number of glyphs does not necessarily match the number
of input characters!
=cut
sub shaper {
my ( $self, $fp ) = @_;
croak("HarfBuzz shape() without font") unless $self->{font};
croak("HarfBuzz shape() without fontsize") unless $self->{size};
croak("HarfBuzz shape() without text") unless defined $self->{text};
my $features = $self->{features} || [];
if ( $fp ) {
foreach my $feature ( @$fp ) {
if ( "none" eq lc $feature ) {
$features = [];
next;
}
push( @$features,
hb_feature_from_string($feature)
|| croak("Unknown shaper feature: \"$feature\"") );
}
}
hb_buffer_clear_contents( $self->{buffer} );
for ( qw( language script direction ) ) {
next unless $self->{$_};
# All setters return undef if something wrong.
no strict 'refs';
my $action = "hb_buffer_set_$_";
$action->( $self->{buffer}, $self->{$_} )
|| croak("Invalid $_: \"$self->{$_}\"" );
}
hb_buffer_add_utf8( $self->{buffer}, $self->{text} );
hb_buffer_guess_segment_properties( $self->{buffer} );
# Set the font point size for correct hinting.
hb_font_set_ptem( $self->{font}, $self->{size} );
# Set a scaling for precision (all info are ints!).
my $scale = 1000;
hb_font_set_scale( $self->{font}, $scale, $scale );
my $info = hb_shaper( $self->{font}, $self->{buffer}, $features );
foreach my $i ( @$info ) {
$i->{$_} *= $self->{size} / $scale
for qw( ax ay dx dy );
}
$self->{shaped} = 1;
return $info;
}
=head2 $info = $hb->get_extents
Get the extents of the (shaped) buffer.
Upon completion an array of hashes is returned with one element for
each glyph.
The hash contains the following items:
x_bearing Distance from the x-origin to the left extremum of the glyph.
y_bearing Distance from the top extremum of the glyph to the y-origin.
width; Distance from the left extremum of the glyph to the right extremum.
height Distance from the top extremum of the glyph to the bottom extremum.
g Glyph index in font (CId)
The values are scaled to the font size as set with set_size().
Note that the number of glyphs does not necessarily match the number
of input characters!
=cut
sub get_extents {
my ( $self ) = @_;
croak("HarfBuzz get_extents() without shaped buffer")
unless $self->{shaped};
my $scale = $self->{size} / 1000;
my $info = hb_buffer_get_extents( $self->{font}, $self->{buffer} );
foreach my $i ( @$info ) {
$i->{$_} *= $scale for qw( x_bearing y_bearing width height );
}
return $info;
}
=head2 $info = $hb->get_font_extents(dir)
Get the extents of the font in the given direction.
I<dir> may be omitted, it defaults to the direction currently set, or
C<'ltr'> if no direction was set.
Upon completion returns a hash with the following items:
ascend The height of typographic ascenders.
descend The height of typographic ascenders.
line_gap The suggested line-spacing gap.
The values are scaled to the font size as set with set_size().
Note that typically ascender is positive and descender negative, in
coordinate systems that grow up.
=cut
sub get_font_extents {
my ( $self, $dir ) = @_;
croak("HarfBuzz get_font_extents() without font")
unless $self->{font};
$dir //= $self->{direction} // 'ltr';
my $scale = ( $self->{size} || 1 ) / 1000;
my $info = hb_buffer_get_font_extents( $self->{font}, $dir );
$info->{$_} *= $scale for qw( ascender descender line_gap );
return $info;
}
1;
__END__
=head1 SEE ALSO
L<Text::Layout>
HarfBuzz website and documentation: L<https://harfbuzz.github.io/index.html>.
=head1 BUGS AND DEFICIENCIES
It probably leaks memory. We'll see.
=head1 SUPPORT AND DOCUMENTATION
Development of this module takes place on GitHub:
https://github.com/sciurius/perl-HarfBuzz-Shaper.
You can find documentation for this module with the perldoc command.
perldoc HarfBuzz::Shaper
Please report any bugs or feature requests using the issue tracker on
GitHub.
HarfBuzz website and documentation: L<https://harfbuzz.github.io/index.html>.
=head1 COPYRIGHT AND LICENCE
Copyright (C) 2020,2025 by Johan Vromans
This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself.
=cut
|