Text.pm
上传用户:qdrechuli
上传日期:2022-08-01
资源大小:917k
文件大小:14k
源码类别:

视频捕捉/采集

开发平台:

Visual C++

  1. # $Id: Text.pm,v 1.23 2000/09/18 08:39:47 mgjv Exp $
  2. package GD::Text;
  3. $GD::Text::prog_version = '$Revision: 1.23 $' =~ /s([d.]+)/;
  4. $GD::Text::VERSION = '0.80';
  5. =head1 NAME
  6. GD::Text - Text utilities for use with GD
  7. =head1 SYNOPSIS
  8.   use GD;
  9.   use GD::Text;
  10.   my $gd_text = GD::Text->new() or die GD::Text::error();
  11.   $gd_text->set_font('funny.ttf', 12) or die $gd_text->error;
  12.   $gd_text->set_font(gdTinyFont);
  13.   $gd_text->set_font(GD::Font::Tiny);
  14.   ...
  15.   $gd_text->set_text($string);
  16.   my ($w, $h) = $gd_text->get('width', 'height');
  17.   if ($gd_text->is_ttf)
  18.   {
  19.   ...
  20.   }
  21. Or alternatively
  22.   my $gd_text = GD::Text->new(
  23.         text => 'Some text',
  24.         font => 'funny.ttf',
  25.         ptsize => 14,
  26.     );
  27. =head1 DESCRIPTION
  28. This module provides a font-independent way of dealing with text in
  29. GD, for use with the GD::Text::* modules and GD::Graph.
  30. =head1 NOTES
  31. As with all Modules for Perl: Please stick to using the interface. If
  32. you try to fiddle too much with knowledge of the internals of this
  33. module, you could get burned. I may change them at any time.
  34. You can only use TrueType fonts with version of GD > 1.20, and then
  35. only if compiled with support for this. If you attempt to do it
  36. anyway, you will get errors.
  37. =head1 METHODS
  38. =cut
  39. use strict;
  40. use GD;
  41. use Carp;
  42. use vars qw($FONT_PATH @FONT_PATH $OS);
  43. BEGIN
  44. {
  45. $FONT_PATH = $ENV{FONT_PATH} || $ENV{TTF_FONT_PATH} || '';
  46. unless ($OS = $^O)
  47. {
  48. require Config;
  49. $OS = $Config::Config{'os_name'};
  50. }
  51. }
  52. my $ERROR;
  53. =head2 GD::Text->new( attrib => value, ... )
  54. Create a new object. See the C<set()> method for attributes.
  55. =cut
  56. sub new
  57. {
  58.     my $proto = shift;
  59.     my $class = ref($proto) || $proto;
  60. my $self = { 
  61. type   => 'builtin',
  62. font   => gdSmallFont,
  63. ptsize => 10,
  64. };
  65.     bless $self => $class;
  66. $self->set(@_) or return;
  67.     return $self
  68. }
  69. =head2 GD::Text::error() or $gd_text->error();
  70. Return the last error that occured in the class. This may be
  71. imperfect.
  72. =cut
  73. # XXX This sucks! fix it
  74. sub error { $ERROR };
  75. sub _set_error { $ERROR = shift };
  76. =head2 $gd_text->set_font( font, size )
  77. Set the font to use for this string. The arguments are either a GD
  78. builtin font (like gdSmallFont or GD::Font->Small) or the name of a
  79. TrueType font file and the size of the font to use. See also
  80. L<"font_path">. 
  81. If you are not using an absolute path to the font file, you can leave of
  82. the .ttf file extension, but you have to append it for absolute paths:
  83.   $gd_text->set_font('cetus', 12);
  84.   # but
  85.   $gd_text->set_font('/usr/fonts/cetus.ttf', 12);
  86. The first argument can be a reference to an array of fonts. The first
  87. font from the array that can be found will be used. This allows you to
  88. do something like
  89.   $gd_text->font_path( '/usr/share/fonts:/usr/fonts');
  90.   $gd_text->set_font(
  91.     ['verdana', 'arial', gdMediumBoldFont], 14);
  92. if you'd prefer verdana to be used, would be satisfied with arial, but
  93. if none of that is available just want to make sure you can fall
  94. back on something that will be available. 
  95. Returns true on success, false on error.
  96. =cut
  97. sub set_font
  98. {
  99. my $self = shift;
  100. my $fonts = shift;
  101. my $size = shift;
  102. # Make sure we have a reference to an array
  103. $fonts = [$fonts] unless ref($fonts) eq 'ARRAY';
  104. foreach my $font (@{$fonts})
  105. {
  106. my $rc = ref($font) && $font->isa('GD::Font') ?
  107. $self->_set_builtin_font($font) :
  108. $self->_set_TTF_font($font, $size) ;
  109. return $rc if $rc;
  110. }
  111. return;
  112. }
  113. sub _set_builtin_font
  114. {
  115. my $self = shift;
  116. my $font = shift;
  117. $self->{type}   = 'builtin';
  118. $self->{font}   = $font;
  119. $self->{ptsize} = 0;
  120. $self->_recalc();
  121. return 1;
  122. }
  123. sub _find_TTF
  124. {
  125. my $font = shift || return;
  126. local $FONT_PATH = $FONT_PATH;
  127. # XXX MOVE A LOT OF THIS INTO THE font_path SUB, filling the
  128. # @FONT_PATH array
  129. my ($psep, $dsep);
  130. if ($OS =~ /^MS(DOS|Win)/i)
  131. {
  132. # Fix backslashes
  133. $font =~ s#\#/#g;
  134. # Check for absolute path
  135. $font =~ m#^([A-Za-z]:|/)# and return $font;
  136. $FONT_PATH =~ s#\#/#g; # XXX move to set_font_path?
  137. $psep = '/';
  138. $dsep = ';';
  139. }
  140. =pod
  141. elsif ($OS =~ /^MacOS/i)   
  142. # Check for absolute path
  143. $font =~ /:/ and $font !~ /^:/ and return $font;
  144. $psep = ':';
  145. $dsep = ',';
  146. }
  147. elsif ($OS =~ /^AmigaOS/i) 
  148. # What's an absolute path here? 
  149. $psep = '/';
  150. $dsep = ':'; # XXX ?
  151. }
  152. elsif ($OS =~ /^VMS/i)
  153. # What's an absolute path here? 
  154. $psep = '/';
  155. $dsep = ':';
  156. }
  157. =cut
  158. else
  159. {
  160. # Default to Unix
  161. # Check for absolute path
  162. substr($font, 0, 1) eq '/' and return $font;
  163. $psep = '/';
  164. $dsep = ':';
  165. }
  166. # If we don't have a font path set, we look in the current directory
  167. # only.
  168. if ($FONT_PATH)
  169. {
  170. # We have a font path, and a relative path to the font file.
  171. # Let's see if the current directory is in the font path. If
  172. # not, put it at the front.
  173. $FONT_PATH = ".$dsep$FONT_PATH"
  174. unless $FONT_PATH eq '.'        || $FONT_PATH =~ /^.$dsep/ ||
  175.    $FONT_PATH =~ /$dsep.$/ || $FONT_PATH =~ /$dsep.$dsep/;
  176. }
  177. else
  178. {
  179. # XXX what about MacOS? It doesn't work like this on MacOS.
  180. $FONT_PATH = '.';
  181. }
  182. # Let's search for it
  183. for my $path (split /$dsep/, $FONT_PATH)
  184. {
  185. # XXX Can I use File::Basename for this?
  186. my $file = "$path$psep$font";
  187. #print "Trying $filen";
  188. -f $file and return $file;
  189. # See if we can find one with a .ttf at the end
  190. $file = "$path$psep$font.ttf";
  191. -f $file and return $file;
  192. }
  193. return;
  194. }
  195. sub _set_TTF_font
  196. {
  197. my $self = shift;
  198. my $font = shift;
  199. my $size = shift;
  200. $ERROR = "TrueType fonts require a point size", return 
  201. unless (defined $size && $size > 0);
  202. return unless $self->can_do_ttf;
  203. my $font_file = _find_TTF($font) or 
  204. $ERROR = "Cannot find TTF font: $font", return;
  205. # Check that the font exists and is a real TTF font
  206. my @bb = GD::Image->stringTTF(0, $font_file, $size, 0, 0, 0, "foo");
  207. $ERROR = $@, return unless @bb;
  208. $self->{type}   = 'ttf';
  209. $self->{font}   = $font_file;
  210. $self->{ptsize} = $size;
  211. $self->_recalc();
  212. return 1;
  213. }
  214. =head2 $gd_text->set_text('some text')
  215. Set the text to operate on. 
  216. Returns true on success and false on error.
  217. =cut
  218. sub set_text
  219. {
  220. my $self = shift;
  221. my $text = shift;
  222. $ERROR = "No text set", return unless defined $text;
  223. $self->{text} = $text;
  224. $self->_recalc_width();
  225. }
  226. =head2 $gd_text->set( attrib => value, ... )
  227. The set method provides a convenience replacement for the various other
  228. C<set_xxx()> methods. Valid attributes are:
  229. =over 4
  230. =item text
  231. The text to operate on, see also C<set_text()>.
  232. =item font, ptsize
  233. The font to use and the point size. The point size is only used for
  234. TrueType fonts. Also see C<set_font()>.
  235. =back
  236. Returns true on success, false on any error, even if it was partially
  237. successful. When an error is returned, no guarantees are given about
  238. the correctness of the attributes.
  239. =cut
  240. # We use this to save a few CPU cycles
  241. my $recalc = 1;
  242. sub set
  243. {
  244. my $self = shift;
  245. $ERROR = "Incorrect attribute list", return if @_%2;
  246. my %args = @_;
  247. $ERROR = '';
  248. $recalc = 0;
  249. foreach (keys %args)
  250. {
  251. /^text$/i   and do {
  252. $self->set_text($args{$_});
  253. next;
  254. };
  255. /^font$/i   and do {
  256. $self->set_font($args{$_}, $self->{ptsize}) or return;
  257. next;
  258. };
  259. /^ptsize$/i and do {
  260. $self->{ptsize} = $args{$_};
  261. next;
  262. };
  263. $ERROR .= " '$_'";
  264. }
  265. $recalc = 1;
  266. $self->_recalc();
  267. if ($ERROR ne '')
  268. {
  269. $ERROR = "Illegal attribute(s):$ERROR";
  270. return;
  271. }
  272. return 1;
  273. }
  274. =head2 $gd_text->get( attrib, ... )
  275. Get the value of an attribute.
  276. Return a list of the attribute values in list context, and the value of
  277. the first attribute in scalar context.
  278. The attributes that can be retrieved are all the ones that can be set,
  279. and:
  280. =over 4
  281. =item width, height
  282. The width (height) of the string in pixels
  283. =item space
  284. The width of a space in pixels
  285. =item char_up, char_down
  286. The number of pixels that a character can stick out above and below the
  287. baseline. Note that this is only useful for TrueType fonts. For builtins
  288. char_up is equal to height, and char_down is always 0.
  289. =back
  290. Note that some of these parameters (char_up, char_down and space) are
  291. generic font properties, and not necessarily a property of the text
  292. that is set.
  293. =cut
  294. sub get
  295. {
  296. my $self = shift;
  297. my @wanted = map $self->{$_}, @_;
  298. wantarray ? @wanted : $wanted[0];
  299. }
  300. =head2 $gd_text->width('string')
  301. Return the length of a string in pixels, without changing the current
  302. value of the text.  Returns the width of 'string' rendered in the
  303. current font and size.  On failure, returns undef.
  304. The use of this method is vaguely deprecated.
  305. =cut
  306. sub width
  307. {
  308. my $self   = shift;
  309. my $string = shift;
  310. my $save   = $self->get('text');
  311. $self->set_text($string) or return;
  312. my $w = $self->get('width');
  313. $self->set_text($save);
  314. return $w;
  315. }
  316. # Here we do the real work. See the documentation for the get method to
  317. # find out which attributes need to be set and/or reset
  318. sub _recalc_width
  319. {
  320. my $self = shift;
  321. return unless $recalc;
  322. return unless (defined $self->{text} && $self->{font});
  323. if ($self->is_builtin)
  324. {
  325. $self->{'width'} = $self->{font}->width() * length($self->{text});
  326. }
  327. elsif ($self->is_ttf)
  328. {
  329. my @bb1 = GD::Image->stringTTF(0, 
  330. $self->{font}, $self->{ptsize}, 0, 0, 0, $self->{text});
  331. $self->{'width'} = $bb1[2] - $bb1[0];
  332. }
  333. else
  334. {
  335. confess "Impossible error in GD::Text::_recalc.";
  336. }
  337. }
  338. my ($test_string, $space_string, $n_spaces); 
  339. BEGIN
  340. {
  341. # Build a string of all characters that are printable, and that are
  342. # not whitespace.
  343. eval {
  344. require POSIX; 
  345. import POSIX;
  346. $test_string = join '', grep isgraph($_), map chr($_), (0x00..0xFF);
  347. };
  348. if ($@)
  349. {
  350. # Most likely POSIX is not available.
  351. # Let's try to emulate isgraph(). This may be wrong at times.
  352. $test_string = join '', map chr($_), (0x21..0x7e, 0xa1..0xff);
  353. }
  354. $space_string = $test_string;
  355. # Put a space every 5 characters, and count how many there are
  356. $n_spaces = $space_string =~ s/(.{5})(.{5})/$1 $2/g;
  357. }
  358. sub _recalc
  359. {
  360. my $self = shift;
  361. return unless $recalc;
  362. return unless $self->{font};
  363. if ($self->is_builtin)
  364. {
  365. $self->{height} =
  366. $self->{char_up} = $self->{font}->height();
  367. $self->{char_down} = 0;
  368. $self->{space} = $self->{font}->width();
  369. }
  370. elsif ($self->is_ttf)
  371. {
  372. my @bb1 = GD::Image->stringTTF(0, 
  373. $self->{font}, $self->{ptsize}, 0, 0, 0, $test_string)
  374. or return;
  375. my @bb2 = GD::Image->stringTTF(0, 
  376. $self->{font}, $self->{ptsize}, 0, 0, 0, $space_string);
  377. $self->{char_up} = -$bb1[7];
  378. $self->{char_down} = $bb1[1];
  379. $self->{height} = $self->{char_up} + $self->{char_down};
  380. # XXX Should we really round this?
  381. $self->{space} = sprintf "%.0f", 
  382. (($bb2[2]-$bb2[0]) - ($bb1[2]-$bb1[0]))/$n_spaces;
  383. }
  384. else
  385. {
  386. confess "Impossible error in GD::Text::_recalc.";
  387. }
  388. $self->_recalc_width() if $self->{text};
  389. return 1;
  390. }
  391. =head2 $gd_text->is_builtin
  392. Returns true if the current object is based on a builtin GD font.
  393. =cut
  394. sub is_builtin
  395. {
  396. my $self = shift; 
  397. return $self->{type} eq 'builtin';
  398. }
  399. =head2 $gd_text->is_ttf
  400. Returns true if the current object is based on a TrueType font.
  401. =cut
  402. sub is_ttf
  403. {
  404. my $self = shift; 
  405. return $self->{type} eq 'ttf';
  406. }
  407. =head2 $gd_text->can_do_ttf() or GD::Text->can_do_ttf()
  408. Return true if this object can handle TTF fonts.
  409. This depends on whether your version of GD is newer than 1.19 and
  410. has TTF support compiled into it.
  411. =cut
  412. sub can_do_ttf
  413. {
  414. my $proto = shift;
  415. # Just see whether there is a stringTTF method at all
  416. GD::Image->can('stringTTF') or return;
  417. # Let's check whether TTF support has been compiled in.  We don't
  418. # need to worry about providing a real font. The following will
  419. # always fail, but we'll check the message to see why it failed
  420. GD::Image->stringTTF(0, 'foo', 10, 0, 0, 0, 'foo');
  421. # Error message: libgd was not built with TrueType font support
  422. $@ =~ /TrueType font support/i and return;
  423. # Well.. It all seems to be fine
  424. return 1;
  425. }
  426. =head2 $gd_text->font_path(path_spec), GD::Text->font_path(path_spec)
  427. This sets the font path for the I<class> (i.e. not just for the object).
  428. The C<set_font> method will search this path to find the font specified
  429. if it is a TrueType font. It should contain a list of
  430. paths. The current directory is always searched first, unless '.' is
  431. present in FONT_PATH. Examples: 
  432.   GD::Text->font_path('/usr/ttfonts'); # Unix
  433.   GD::Text->font_path('c:/fonts');     # MS-OS
  434. Any font name that is not an absolute path will first be looked for in
  435. the current directory, and then in /usr/ttfonts (c:fonts).
  436.   GD::Text->font_path('/usr/ttfonts:.:lib/fonts'); # Unix
  437.   GD::Text->font_path('c:/fonts;.;f:/fonts');      # MS-OS
  438. Any font name that is not an absolute path will first be looked for in
  439. /usr/ttfonts (c:fonts), then in the current directory. and then in
  440. lib/fonts (f:fonts),
  441. relative to the current directory.
  442.   GD::Text->font_path(undef);
  443. Font files are only looked for in the current directory.
  444. FONT_PATH is initialised at module load time from the environment
  445. variables FONT_PATH or, if that's not present, TTF_FONT_PATH.
  446. Returns the value the font path is set to.  If called without arguments
  447. C<font_path> returns the current font path.
  448. Note: This currently only works for unices, and (hopefully) for
  449. Microsoft based OS's. If anyone feels the urge to have a look at the
  450. code, and send me patches for their OS, I'd be most grateful)
  451. =cut
  452. sub font_path
  453. {
  454. my $proto = shift;
  455. if (@_)
  456. {
  457. $FONT_PATH = shift;
  458. if ($FONT_PATH)
  459. {
  460. # clean up a bit
  461. $FONT_PATH =~ s/^:+//;
  462. $FONT_PATH =~ s/:+$//;
  463. }
  464. }
  465. $FONT_PATH;
  466. }
  467. =head1 BUGS
  468. This module has only been tested with anglo-centric 'normal' fonts and
  469. encodings.  Fonts that have other characteristics may not work well.
  470. If that happens, please let me know how to make this work better.
  471. The font height gets estimated by building a string with all printable
  472. characters that pass the POSIX::isgraph() test. If your system doesn't
  473. have POSIX, I make an approximation that may be false.
  474. The whole font path thing works well on Unix, but probably not very well
  475. on other OS's. This is only a problem if you try to use a font path. If
  476. you don't use a font path, there should never be a problem. I will try
  477. to expand this in the future, but only if there's a demand for it.
  478. Suggestions welcome.
  479. =head1 COPYRIGHT
  480. copyright 1999
  481. Martien Verbruggen (mgjv@comdyn.com.au)
  482. =head1 SEE ALSO
  483. GD(3), GD::Text::Wrap(3), GD::Text::Align(3)
  484. =cut
  485. 1;