.\" Automatically generated by Pod::Man 4.07 (Pod::Simple 3.32) .\" .\" 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 .. .\" Set up some character translations and predefined strings. \*(-- will .\" give an unbreakable dash, \*(PI will give pi, \*(L" will give a left .\" double quote, and \*(R" will give a right double quote. \*(C+ will .\" give a nicer C++. Capital omega is used to do unbreakable dashes and .\" therefore won't be available. \*(C` and \*(C' expand to `' in nroff, .\" nothing in troff, for use with C<>. .tr \(*W- .ds C+ C\v'-.1v'\h'-1p'\s-2+\h'-1p'+\s0\v'.1v'\h'-1p' .ie n \{\ . ds -- \(*W- . ds PI pi . if (\n(.H=4u)&(1m=24u) .ds -- \(*W\h'-12u'\(*W\h'-12u'-\" diablo 10 pitch . if (\n(.H=4u)&(1m=20u) .ds -- \(*W\h'-12u'\(*W\h'-8u'-\" diablo 12 pitch . ds L" "" . ds R" "" . ds C` "" . ds C' "" 'br\} .el\{\ . ds -- \|\(em\| . ds PI \(*p . ds L" `` . ds R" '' . 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 .. .if !\nF .nr F 0 .if \nF>0 \{\ . de IX . tm Index:\\$1\t\\n%\t"\\$2" .. . if !\nF==2 \{\ . nr % 0 . nr F 2 . \} .\} .\" ======================================================================== .\" .IX Title "PDF::Font 3pm" .TH PDF::Font 3pm "2016-12-31" "perl v5.24.1" "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.41 .SH "DESCRIPTION" .IX Header "DESCRIPTION" Base font class to support font families approved by PDF::Create. This is used in the method \f(CW\*(C`init_widths()\*(C'\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 "\fIchar_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 (\s-1MANWAR\s0) \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.