/usr/share/perl5/GD/Text/Wrap.pm is in libgd-text-perl 0.86-9.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | # $Id: Wrap.pm,v 1.20 2003/02/20 12:51:29 mgjv Exp $
package GD::Text::Wrap;
($GD::Text::Wrap::VERSION) = '$Revision: 1.20 $' =~ /\s([\d.]+)/;
=head1 NAME
GD::Text::Wrap - Wrap strings in boxes
=head1 SYNOPSIS
use GD;
use GD::Text::Wrap;
my $gd = GD::Image->new(800,600);
# allocate colours, do other things.
my $text = <<EOSTR;
Lorem ipsum dolor sit amet, consectetuer adipiscing elit,
sed diam nonummy nibh euismod tincidunt ut laoreet dolore
magna aliquam erat volutpat.
EOSTR
my $wrapbox = GDTextWrap->new( $gd,
line_space => 4,
color => $black,
text => $text,
);
$wrapbox->set_font(gdMediumBoldFont);
$wrapbox->set_font('arial', 12);
$wrapbox->set(align => 'left', width => 120);
$wrapbox->draw(10,140);
$gd->rectangle($wrap_box->get_bounds(10,140), $color);
=head1 DESCRIPTION
GD::Text::Wrap provides an object that draws a formatted paragraph of
text in a box on a GD::Image canvas, using either a builtin GD font
or a TrueType font.
=head1 METHODS
This class doesn't inherit from GD::Text directly, but delegates most of
its work to it (in fact to a GD::Text::Align object. That means that
most of the GD::Text::Align methods are available for this class,
specifically C<set_font> and C<font_path>. Other methods and methods
with a different interface are described here:
=cut
use strict;
# XXX add version number to GD
use GD;
use GD::Text::Align;
use Carp;
my %attribs = (
width => undef,
height => undef,
line_space => 2,
para_space => 0,
align => 'justified',
text => undef,
preserve_nl => 0,
);
=head2 GD::Text::Wrap->new( $gd_object, attribute => value, ... )
Create a new object. The first argument to new has to be a valid
GD::Image object. The other arguments will be passed to the set() method
for initialisation of the attributes.
=cut
sub new
{
my $proto = shift;
my $class = ref($proto) || $proto;
my $gd = shift;
ref($gd) and $gd->isa('GD::Image')
or croak "Not a GD::Image object";
my $self = { gd => $gd };
bless $self => $class;
$self->_init();
$self->set(@_);
return $self
}
sub _init
{
my $self = shift;
$self->{render} = GD::Text::Align->new($self->{gd}, text => 'Foo');
croak "Cannot allocate GD::Text::Align object" unless $self->{render};
# XXX 5.004_04 doesn't like foreach as a modifier
#$self->set($_, $attribs{$_}) foreach (keys %attribs);
foreach (keys %attribs) { $self->set($_, $attribs{$_}) };
# XXX SET DEFAULTS
$self->set(
colour => $self->{gd}->colorsTotal - 1,
width => ($self->{gd}->getBounds())[0] - 1,
);
}
=head2 $wrapbox->set( attribute => value, ... )
set the value for an attribute. Valid attributes are:
=over 4
=item width
The width of the box to draw the text in. If unspecified, they will
default to the width of the GD::Image object.
=item line_space
The number of pixels between lines. Defaults to 2.
=item para_space, paragraph_space
The number of extra pixels between paragraphs, above line_space.
Defaults to 0.
=item color, colour
Synonyms. The colour to use when drawing the font. Will be initialised
to the last colour in the GD object's palette.
=item align, alignment
Synonyms. One of 'justified' (the default), 'left', 'right' or 'center'.
=item text
The text to draw. This is the only attribute that you absolutely have to
set.
=item preserve_nl
If set to a true value, newlines in the text will cause a line break.
Note that lines will still be justified. If only one word appears on
the line, it could get ugly.
Defaults to 0.
=back
As with the methods, attributes unknown to this class get delegated to
the GD::Text::Align class.
=cut
sub _attrib_name
{
my $attrib = shift;
$attrib = 'colour' if $attrib eq 'color';
$attrib = 'align' if $attrib =~ /^align/;
$attrib = 'para_space' if $attrib eq 'paragraph_space';
$attrib;
}
sub set
{
my $self = shift;
my %args = @_;
while (my ($attrib, $val) = each %args)
{
# This spelling problem keeps bugging me.
SWITCH: for (_attrib_name($attrib))
{
exists $attribs{$_} and
$self->{$_} = $val, last SWITCH;
# If we don't have this attribute, maybe the GD::Text::Align
# object can use it (for colour mainly at the moment)
$self->{render}->set($_ => $val) and last SWITCH;
carp "No attribute $attrib";
}
}
}
=head2 $wrapbox->get( attribute );
Get the current value of an attribute. All attributes mentioned under
the C<set()> method can be retrieved
=cut
sub get
{
my $self = shift;
my $attrib = shift;
$self->{_attrib_name($attrib)}
}
=head2 $wrapbox->get_bounds()
Returns the bounding box of the box that will be drawn with the current
attribute settings as a list. The values returned are the coordinates of
the upper left and lower right corner.
($left, $top, $right, $bottom) = $wrapbox->get_bounds();
Returns an empty list on error.
NOTE: The return list of this method may change in a future
implementation that allows angled boxes.
=cut
my $dry_run = 0;
sub get_bounds
{
my $self = shift;
$dry_run = 1;
return $self->draw(@_);
}
#
# Vertical movement and state
#
sub _move_to_top
{
my $self = shift;
$self->{_y_pos} = $self->{top} + $self->{render}->get('char_up');
}
sub _at_top
{
my $self = shift;
$self->{_y_pos} == $self->{top} + $self->{render}->get('char_up');
}
sub _set_bottom
{
my $self = shift;
$self->{bottom} = $self->{_y_pos} + $self->{render}->get('char_down');
}
sub _crlf
{
my $self = shift;
$self->{_y_pos} += $self->{render}->get('height') +
$self->{line_space}
}
sub _new_paragraph
{
my $self = shift;
$self->_crlf;
$self->{_y_pos} += $self->{para_space};
}
sub _undo_new_paragraph
{
my $self = shift;
$self->{_y_pos} -= $self->{render}->get('height') +
$self->{line_space} + $self->{para_space};
}
=head2 $wrapbox->draw(x, y)
Draw the box, with (x,y) as the top right corner.
Returns the same values as the C<getbounds()> method.
NOTE: The return list of this method may change in a future
implementation that allows angled boxes.
=cut
sub draw
{
my $self = shift;
$self->{left} = shift;
defined($self->{left}) or return;
$self->{top} = shift;
defined($self->{top}) or return;
$self->{angle} = shift || 0; #unused
return unless $self->{text};
$self->{right} = $self->{left} + $self->{width};
$self->_move_to_top;
# FIXME We need a better paragraph separation RE
foreach my $paragraph (split '\n\n+', $self->{text})
#foreach my $paragraph ($self->{text})
{
$self->_draw_paragraph($paragraph);
$self->_new_paragraph;
}
$self->_undo_new_paragraph; # FIXME Yuck
# Reset dry_run
$dry_run = 0;
$self->_set_bottom;
return (
$self->{left}, $self->{top},
$self->{right}, $self->{bottom}
)
}
sub _draw_paragraph
{
my $self = shift;
my $text = shift;
my @line = ();
foreach my $word (split /(\s+)/, $text)
{
# Number of newlines
my $nnl = $self->{preserve_nl} ? $word =~ y/\n// : 0;
# Length of the whole line with this new word
my $len = $nnl ? 0 : $self->{render}->width(join(' ', @line, $word));
# If this is a separator without newlines, continue with next
next if !$nnl && $word =~ /^\s+$/;
if (($len > $self->{right} - $self->{left} || $nnl) && @line)
{
$self->_draw_line(@line) unless $dry_run;
@line = ();
$self->_crlf;
# XXX 5.004 compatibility
#$self->_crlf for (2..$nnl);
for (2..$nnl) { $self->_crlf }
}
# Store the new word, unless it's just newlines
push @line, $word unless $nnl;
}
# Take care of the last line
$self->_draw_last_line(@line) unless $dry_run;
}
sub _draw_line
{
my $self = shift;
$self->__draw_line(0, @_);
}
sub _draw_last_line
{
my $self = shift;
$self->__draw_line(1, @_);
}
sub __draw_line
{
my $self = shift;
# We need the following for justification only
my $last = shift;
for ($self->{align})
{
/^just/i and !$last and do
{
$self->_draw_justified_line(@_);
last;
};
/^right/i and do
{
$self->{render}->set_text(join(' ', @_));
$self->{render}->set_halign('right');
$self->{render}->draw($self->{right}, $self->{_y_pos});
last;
};
/^center/i and do
{
$self->{render}->set_text(join(' ', @_));
$self->{render}->set_halign('left');
my $x = ($self->{right} + $self->{left} -
$self->{render}->get('width')) / 2;
$self->{render}->draw($x, $self->{_y_pos});
last;
};
# default action, left justification
$self->{render}->set_text(join(' ', @_));
$self->{render}->set_halign('left');
$self->{render}->draw($self->{left}, $self->{_y_pos});
}
}
sub _draw_justified_line
{
my $self = shift;
my $y = $self->{_y_pos};
my $x = $self->{left};
$self->{render}->set_halign('left');
my @lengths = ();
my $length = 0;
# first, calculate the lengths of the individual words
foreach my $word (@_)
{
$self->{render}->set_text($word);
my $len = $self->{render}->get('width');
push @lengths, $len;
$length += $len;
}
# Calculate the average space between words
my $space = ($self->{right} - $self->{left} - $length)/($#_ || 1);
# Draw all the words, except the last one
for (my $i = 0; $i < $#_; $i++)
{
$self->{render}->set_text($_[$i]);
$self->{render}->draw($x, $y);
$x += $lengths[$i] + $space;
}
# Draw the last word
# XXX This will make a single word that's too long stick out the
# right side of the box. is that what we want?
$self->{render}->set_halign('right');
$self->{render}->set_text($_[-1]);
$self->{render}->draw($self->{right}, $y);
}
#
# Delegate all the other methods to the GD::Text::Align method
use vars qw($AUTOLOAD);
sub AUTOLOAD
{
my $self = shift;
my ($method) = $AUTOLOAD =~ /.*::(.*)$/;
$self->{render}->$method(@_) if ($method ne 'DESTROY');
}
=head1 NOTES
As with all Modules for Perl: Please stick to using the interface. If
you try to fiddle too much with knowledge of the internals of this
module, you may get burned. I may change them at any time.
You can only use TrueType fonts with version of GD > 1.20, and then
only if compiled with support for this. If you attempt to do it
anyway, you will get errors.
Even though this module lives in the GD::Text namespace, it is not a
GD::Text. It does however delegate a lot of its functionality to a
contained object that is one (GD::Text::Align).
=head1 BUGS
None that I know of, but that doesn't mean much. There may be some
problems with exotic fonts, or locales and character encodings that I am
not used to.
=head1 TODO
Angled boxes.
At the moment, the only bit of the box that is allowed to be unspecified
and in fact must be unspecified, is the bottom. If there is enough need
for it, I might implement more flexibility, in that that you need to
only specify three of the four sides of the box, and the fourth will
be calculated.
Automatic resizing of a TrueType font to fit inside a box when four
sides are specified, or maybe some other nifty things.
More flexibility in the interface. Especially draw needs some thought.
More and better error handling.
Warnings for lines that are too long and stick out of the box.
Warning for emptyish lines?
=head1 COPYRIGHT
copyright 1999
Martien Verbruggen (mgjv@comdyn.com.au)
=head1 SEE ALSO
L<GD>, L<GD::Text>, L<GD::Text::Align>
=cut
1;
|