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
|
#=======================================================================
# ____ ____ _____ _ ____ ___ ____
# | _ \| _ \| ___| _ _ / \ | _ \_ _| |___ \
# | |_) | | | | |_ (_) (_) / _ \ | |_) | | __) |
# | __/| |_| | _| _ _ / ___ \| __/| | / __/
# |_| |____/|_| (_) (_) /_/ \_\_| |___| |_____|
#
# A Perl Module Chain to faciliate the Creation and Modification
# of High-Quality "Portable Document Format (PDF)" Files.
#
# Copyright 1999-2005 Alfred Reibenschuh <areibens@cpan.org>.
#
#=======================================================================
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2 of the License, or (at your option) any later version.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the
# Free Software Foundation, Inc., 59 Temple Place - Suite 330,
# Boston, MA 02111-1307, USA.
#
# $Id: CJKFont.pm,v 1.14 2005/03/14 22:01:07 fredo Exp $
#
#=======================================================================
package PDF::API2::Resource::CIDFont::CJKFont;
BEGIN {
use utf8;
use Encode qw(:all);
use PDF::API2::Util;
use PDF::API2::Basic::PDF::Utils;
use PDF::API2::Resource::CIDFont;
use PDF::API2::IOString;
use PDF::API2::Basic::TTF::Font;
use POSIX;
use vars qw( @ISA $fonts $cmap $alias $subs $VERSION );
@ISA = qw( PDF::API2::Resource::CIDFont );
( $VERSION ) = '$Revision: 1.14 $' =~ /Revision: (\S+)\s/; # $Date: 2005/03/14 22:01:07 $
$fonts = { };
$cmap = { };
}
no warnings qw[ deprecated recursion uninitialized ];
=head1 NAME
PDF::API2::Resource::CIDFont::CJKFont - A CJK-Font object for PDF::API2
=head1 SYNOPSIS
=item $font = PDF::API2::Resource::CIDFont::CJKFont->new $pdf, $cjkname, %options
Returns a cjk-font object.
Defined Options:
-encode ... specify fonts encoding for non-utf8 text.
=cut
sub _look_for_font {
my $fname=lc(shift);
$fname=~s/[^a-z0-9]+//gi;
$fname=$alias->{$fname} if(defined $alias->{$fname});
return({%{$fonts->{$fname}}}) if(defined $fonts->{$fname});
if(defined $subs->{$fname}) {
$data=_look_for_font($subs->{$fname}->{-alias});
foreach my $k (keys %{$subs->{$fname}}) {
next if($k=~/^\-/);
$data->{$k}=$subs->{$fname}->{$k};
}
$fonts->{$fname}=$data;
return({%{$data}})
}
eval "require PDF::API2::Resource::CIDFont::CJKFont::$fname; ";
unless($@){
return({%{$fonts->{$fname}}});
} else {
die "requested font '$fname' not installed ";
}
}
sub _look_for_cmap ($) {
my $fname=lc(shift);
$fname=~s/[^a-z0-9]+//gi;
return({%{$cmap->{$fname}}}) if(defined $cmap->{$fname});
eval "require PDF::API2::Resource::CIDFont::CMap::$fname; ";
unless($@){
return({%{$cmap->{$fname}}});
} else {
die "requested cmap '$fname' not installed ";
}
}
sub new {
my ($class,$pdf,$name,@opts) = @_;
my %opts=();
%opts=@opts if((scalar @opts)%2 == 0);
$opts{-encode}||='ident';
my $data = _look_for_font($name);
my $cmap = _look_for_cmap($data->{cmap});
$data->{u2g} = { %{$cmap->{u2g}} };
$data->{g2u} = [ @{$cmap->{g2u}} ];
$class = ref $class if ref $class;
my $self=$class->SUPER::new($pdf,$data->{apiname}.pdfkey());
$pdf->new_obj($self) if(defined($pdf) && !$self->is_obj($pdf));
$self->{' data'}=$data;
my $des=$self->descrByData;
my $de=$self->{' de'};
if(defined $opts{-encode} && $opts{-encode} ne 'ident') {
$self->data->{encode}=$opts{-encode};
}
my $emap={
'reg'=>'Adobe',
'ord'=>'Identity',
'sup'=> 0,
'map'=>'Identity',
'dir'=>'H',
'dec'=>'ident',
};
if(defined $cmap->{ccs}) {
$emap->{reg}=$cmap->{ccs}->[0];
$emap->{ord}=$cmap->{ccs}->[1];
$emap->{sup}=$cmap->{ccs}->[2];
}
#if(defined $cmap->{cmap} && defined $cmap->{cmap}->{$opts{-encode}} ) {
# $emap->{dec}=$cmap->{cmap}->{$opts{-encode}}->[0];
# $emap->{map}=$cmap->{cmap}->{$opts{-encode}}->[1];
#} elsif(defined $cmap->{cmap} && defined $cmap->{cmap}->{'utf8'} ) {
# $emap->{dec}=$cmap->{cmap}->{'utf8'}->[0];
# $emap->{map}=$cmap->{cmap}->{'utf8'}->[1];
#}
$self->data->{decode}=$emap->{dec};
$self->{'BaseFont'} = PDFName($self->fontname."-$emap->{map}-$emap->{dir}");
$self->{'Encoding'} = PDFName("$emap->{map}-$emap->{dir}");
$de->{'FontDescriptor'} = $des;
$de->{'Subtype'} = PDFName('CIDFontType0');
$de->{'BaseFont'} = PDFName($self->fontname);
$de->{'DW'} = PDFNum($self->missingwidth);
$de->{'CIDSystemInfo'}->{Registry} = PDFStr($emap->{reg});
$de->{'CIDSystemInfo'}->{Ordering} = PDFStr($emap->{ord});
$de->{'CIDSystemInfo'}->{Supplement} = PDFNum($emap->{sup});
## $de->{'CIDToGIDMap'} = PDFName($emap->{map}); # ttf only
return($self);
}
=item $font = PDF::API2::Resource::CIDFont::CJKFont->new_api $api, $cjkname, %options
Returns a cjk-font object. This method is different from 'new' that
it needs an PDF::API2-object rather than a Text::PDF::File-object.
=cut
sub new_api {
my ($class,$api,@opts)=@_;
my $obj=$class->new($api->{pdf},@opts);
$self->{' api'}=$api;
$api->{pdf}->out_obj($api->{pages});
return($obj);
}
sub tounicodemap {
my $self=shift @_;
# noop since pdf knows its char-collection
return($self);
}
sub glyphByCId
{
my ($self,$cid)=@_;
my $uni = $self->uniByCId($cid);
return( nameByUni($uni) );
}
sub outobjdeep {
my ($self, $fh, $pdf, %opts) = @_;
return $self->SUPER::outobjdeep($fh, $pdf) if defined $opts{'passthru'};
my $notdefbefore=1;
my $wx=PDFArray();
$self->{' de'}->{'W'} = $wx;
my $ml;
foreach my $w (0..(scalar @{$self->data->{g2u}} - 1 )) {
if(ref($self->data->{wx}) eq 'ARRAY'
&& (defined $self->data->{wx}->[$w])
&& ($self->data->{wx}->[$w] != $self->missingwidth)
&& $notdefbefore==1)
{
$notdefbefore=0;
$ml=PDFArray();
$wx->add_elements(PDFNum($w),$ml);
$ml->add_elements(PDFNum($self->data->{wx}->[$w]));
}
elsif(ref($self->data->{wx}) eq 'HASH'
&& (defined $self->data->{wx}->{$w})
&& ($self->data->{wx}->{$w} != $self->missingwidth)
&& $notdefbefore==1)
{
$notdefbefore=0;
$ml=PDFArray();
$wx->add_elements(PDFNum($w),$ml);
$ml->add_elements(PDFNum($self->data->{wx}->{$w}));
}
elsif(ref($self->data->{wx}) eq 'ARRAY'
&& (defined $self->data->{wx}->[$w])
&& ($self->data->{wx}->[$w] != $self->missingwidth)
&& $notdefbefore==0)
{
$notdefbefore=0;
$ml->add_elements(PDFNum($self->data->{wx}->[$w]));
}
elsif(ref($self->data->{wx}) eq 'HASH'
&& (defined $self->data->{wx}->{$w})
&& ($self->data->{wx}->{$w} != $self->missingwidth)
&& $notdefbefore==0)
{
$notdefbefore=0;
$ml->add_elements(PDFNum($self->data->{wx}->{$w}));
}
else
{
$notdefbefore=1;
}
}
$self->SUPER::outobjdeep($fh, $pdf, %opts);
}
BEGIN {
$alias={
'traditional' => 'adobemingstdlightacro',
'ming' => 'adobemingstdlightacro',
'simplified' => 'adobesongstdlightacro',
'song' => 'adobesongstdlightacro',
'korean' => 'adobemyungjostdmediumacro',
'myungjostdmedium' => 'adobemyungjostdmediumacro',
'hysmyeongjomedium' => 'adobemyungjostdmediumacro',
'japanese' => 'kozgopromediumacro',
'kozgopromedium' => 'kozgopromediumacro',
'gothicbbbmedium' => 'kozgopromediumacro',
'heiseikakugow5' => 'kozgopromediumacro',
'japanese2' => 'kozminproregularacro',
'kozminproregular' => 'kozminproregularacro',
'ryuminlight' => 'kozminproregularacro',
'heiseiminw3' => 'kozminproregularacro',
};
$subs={
'minchow3' => {
'-alias' => 'kozminproregularacro',
'fontname' => 'SerifMincho-W3',
'fontfamily' => 'SerifMincho',
'fontstretch' => 'Normal',
'fontweight' => '300',
'altname' => 'SerifMinchoW3',
'subname' => 'Regular',
'cmap' => 'japanese',
'encode' => 'euc-jp',
'panose' => "\x01\x05\x02\x0b\x04\x00\x00\x00\x00\x00\x00\x00",
},
'minchow5' => {
'-alias' => 'kozminproregularacro',
'fontname' => 'SerifMincho-W5',
'fontfamily' => 'SerifMincho',
'fontstretch' => 'Normal',
'fontweight' => '500',
'altname' => 'SerifMinchoW5',
'subname' => 'Regular',
'cmap' => 'japanese',
'encode' => 'euc-jp',
'panose' => "\x01\x05\x02\x0b\x06\x00\x00\x00\x00\x00\x00\x00",
},
'minchow7' => {
'-alias' => 'kozminproregularacro',
'fontname' => 'SerifMincho-W7',
'fontfamily' => 'SerifMincho',
'fontstretch' => 'Normal',
'fontweight' => '700',
'altname' => 'SerifMinchoW7',
'subname' => 'Regular',
'cmap' => 'japanese',
'encode' => 'euc-jp',
'panose' => "\x01\x05\x02\x0b\x08\x00\x00\x00\x00\x00\x00\x00",
},
'minchow9' => {
'-alias' => 'kozminproregularacro',
'fontname' => 'SerifMincho-W9',
'fontfamily' => 'SerifMincho',
'fontstretch' => 'Normal',
'fontweight' => '900',
'altname' => 'SerifMinchoW9',
'subname' => 'Regular',
'cmap' => 'japanese',
'encode' => 'euc-jp',
'panose' => "\x01\x05\x02\x0b\x0a\x00\x00\x00\x00\x00\x00\x00",
},
'gothicw3' => {
'-alias' => 'kozgopromediumacro',
'fontname' => 'SansGothic-W3',
'fontfamily' => 'SansGothic',
'fontstretch' => 'Normal',
'fontweight' => '300',
'altname' => 'SansGothicW3',
'subname' => 'Regular',
'cmap' => 'japanese',
'encode' => 'euc-jp',
'panose' => "\x08\x01\x02\x0b\x03\x00\x00\x00\x00\x00\x00\x00",
},
'gothicw5' => {
'-alias' => 'kozgopromediumacro',
'fontname' => 'SansGothic-W5',
'fontfamily' => 'SansGothic',
'fontstretch' => 'Normal',
'fontweight' => '500',
'altname' => 'SansGothicW5',
'subname' => 'Regular',
'cmap' => 'japanese',
'encode' => 'euc-jp',
'panose' => "\x08\x01\x02\x0b\x05\x00\x00\x00\x00\x00\x00\x00",
},
'gothicw7' => {
'-alias' => 'kozgopromediumacro',
'fontname' => 'SansGothic-W7',
'fontfamily' => 'SansGothic',
'fontstretch' => 'Normal',
'fontweight' => '700',
'altname' => 'SansGothicW7',
'subname' => 'Regular',
'cmap' => 'japanese',
'encode' => 'euc-jp',
'panose' => "\x08\x01\x02\x0b\x07\x00\x00\x00\x00\x00\x00\x00",
},
'gothicw9' => {
'-alias' => 'kozgopromediumacro',
'fontname' => 'SansGothic-W9',
'fontfamily' => 'SansGothic',
'fontstretch' => 'Normal',
'fontweight' => '900',
'altname' => 'SansGothicW9',
'subname' => 'Regular',
'cmap' => 'japanese',
'encode' => 'euc-jp',
'panose' => "\x08\x01\x02\x0b\x09\x00\x00\x00\x00\x00\x00\x00",
},
};
}
1;
__END__
=head1 AUTHOR
alfred reibenschuh
=head1 HISTORY
$Log: CJKFont.pm,v $
Revision 1.14 2005/03/14 22:01:07 fredo
upd 2005
Revision 1.13 2004/12/16 00:30:53 fredo
added no warn for recursion
Revision 1.12 2004/11/25 15:07:21 fredo
fixed prototype warning
Revision 1.11 2004/11/22 21:07:55 fredo
fixed multibyte-encoding support to work consistently acress cjk/ttf/otf
Revision 1.10 2004/11/22 02:04:27 fredo
added missing substitutes
Revision 1.9 2004/11/22 01:03:24 fredo
fixed supplement set, added substitute handling
Revision 1.8 2004/11/21 02:58:51 fredo
fixed multibyte encoding issues
Revision 1.7 2004/10/26 14:43:25 fredo
added alternative glyph-width storage/retrieval
Revision 1.6 2004/06/15 09:14:42 fredo
removed cr+lf
Revision 1.5 2004/06/07 19:44:36 fredo
cleaned out cr+lf for lf
Revision 1.4 2004/02/24 00:08:54 fredo
added utf8 fallback for encoding
Revision 1.3 2003/12/08 13:05:33 Administrator
corrected to proper licencing statement
Revision 1.2 2003/11/30 17:30:40 Administrator
merged into default
Revision 1.1.1.1.2.2 2003/11/30 16:56:36 Administrator
merged into default
Revision 1.1.1.1.2.1 2003/11/30 14:13:33 Administrator
added CVS id/log
=cut
------- Chinese -------
Traditional Simplified Japanese Korean
Acrobat 6:
AdobeMingStd-Light-Acro AdobeSongStd-Light-Acro KozGoPro-Medium-Acro AdobeMyungjoStd-Medium-Acro
KozMinPro-Regular-Acro
Acrobat 5:
MSungStd-Light-Acro STSongStd-Light-Acro KozMinPro-Regular-Acro HYSMyeongJoStd-Medium-Acro
Acrobat 4:
MSung-Light STSong-Light HeiseiKakuGo-W5 HYSMyeongJo-Medium
MHei-Medium HeiseiMin-W3 HYGoThic-Medium
|