.\" -*- mode: troff; coding: utf-8 -*- .\" Automatically generated by Pod::Man 5.01 (Pod::Simple 3.43) .\" .\" Standard preamble: .\" ======================================================================== .de Sp \" Vertical space (when we can't use .PP) .if t .sp .5v .if n .sp .. .de Vb \" Begin verbatim text .ft CW .nf .ne \\$1 .. .de Ve \" End verbatim text .ft R .fi .. .\" \*(C` and \*(C' are quotes in nroff, nothing in troff, for use with C<>. .ie n \{\ . ds C` "" . ds C' "" 'br\} .el\{\ . ds C` . ds C' 'br\} .\" .\" Escape single quotes in literal strings from groff's Unicode transform. .ie \n(.g .ds Aq \(aq .el .ds Aq ' .\" .\" If the F register is >0, we'll generate index entries on stderr for .\" titles (.TH), headers (.SH), subsections (.SS), items (.Ip), and index .\" entries marked with X<> in POD. Of course, you'll have to process the .\" output yourself in some meaningful fashion. .\" .\" Avoid warning from groff about undefined register 'F'. .de IX .. .nr rF 0 .if \n(.g .if rF .nr rF 1 .if (\n(rF:(\n(.g==0)) \{\ . if \nF \{\ . de IX . tm Index:\\$1\t\\n%\t"\\$2" .. . if !\nF==2 \{\ . nr % 0 . nr F 2 . \} . \} .\} .rr rF .\" ======================================================================== .\" .IX Title "PDF::Font 3pm" .TH PDF::Font 3pm 2024-03-07 "perl v5.38.2" "User Contributed Perl Documentation" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l .nh .SH NAME PDF::Font \- Base font class for PDF::Create. .SH VERSION .IX Header "VERSION" Version 1.46 .SH DESCRIPTION .IX Header "DESCRIPTION" Base font class to support font families approved by PDF::Create. This is used in the method \f(CWinit_widths()\fR inside the package PDF::Create::Page. .SH SYNOPSIS .IX Header "SYNOPSIS" .Vb 2 \& use strict; use warnings; \& use PDF::Font; \& \& my $font = PDF::Font\->new(\*(AqHelvetica\*(Aq); \& my $char_widths = $font\->char_width; \& print "Character width: ", $font\->get_char_width(ord(\*(AqA\*(Aq)), "\en"; \& print "Character name: ", $font\->get_char_name(ord(\*(AqA\*(Aq)) , "\en"; .Ve .SH CONSTRUCTOR .IX Header "CONSTRUCTOR" Expects \f(CW\*(C`font_name\*(C'\fR as the only parameter. It can be one of the following names: .IP \(bu 4 Courier .IP \(bu 4 Courier-Bold .IP \(bu 4 Courier-BoldOblique .IP \(bu 4 Courier-Oblique .IP \(bu 4 Helvetica .IP \(bu 4 Helvetica-Bold .IP \(bu 4 Helvetica-BoldOblique .IP \(bu 4 Helvetica-Oblique .IP \(bu 4 Times-Bold .IP \(bu 4 Times-BoldItalic .IP \(bu 4 Times-Italic .IP \(bu 4 Times-Roman .IP \(bu 4 Symbol .SH METHODS .IX Header "METHODS" .SS \fBchar_width()\fP .IX Subsection "char_width()" Returns arrayref of all characters width (0..255). .SS get_char_width($codepoint) .IX Subsection "get_char_width($codepoint)" Returns the character width for the given \f(CW$codepoint\fR. .SS get_char_name($codepoint) .IX Subsection "get_char_name($codepoint)" Returns the character name for the given \f(CW$codepoint\fR. .SH AUTHORS .IX Header "AUTHORS" Mohammad S Anwar (MANWAR) \f(CW\*(C`\*(C'\fR .SH REPOSITORY .IX Header "REPOSITORY" .SH COPYRIGHT .IX Header "COPYRIGHT" Copyright 1999\-2001,Fabien Tassin.All rights reserved.It may be used and modified freely, but I do request that this copyright notice remain attached to the file. You may modify this module as you wish,but if you redistribute a modified version , please attach a note listing the modifications you have made. .PP Copyright 2007 Markus Baertschi .PP Copyright 2010 Gary Lieberman .SH LICENSE .IX Header "LICENSE" This is free software; you can redistribute it and / or modify it under the same terms as Perl 5.6.0.