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
|
#!/usr/bin/perl
# dumps a bitmap distribution format (.bdf) font
use strict;
use warnings;
use PDF::Builder;
use PDF::Builder::Util;
use File::Basename;
use PDF::Builder::Resource::Font::BdFont;
use Data::Dumper;
my $compress = 'none'; # uncompressed streams
#my $compress = 'flate'; # compressed stream
my $doDump = 0; # one page per character
my $doText = 1; # Lorem Ipsum text
my $LoremIpsum=q|Sed ut perspiciatis, unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam eaque ipsa, quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt, explicabo. Nemo enim ipsam voluptatem, quia voluptas sit, aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos, qui ratione voluptatem sequi nesciunt, neque porro quisquam est, qui dolorem ipsum, quia dolor sit, amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt, ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit, qui in ea voluptate velit esse, quam nihil molestiae consequatur, vel illum, qui dolorem eum fugiat, quo voluptas nulla pariatur? At vero eos et accusamus et iusto odio dignissimos ducimus, qui blanditiis praesentium voluptatum deleniti atque corrupti, quos dolores et quas molestias excepturi sint, obcaecati cupiditate non provident, similique sunt in culpa, qui officia deserunt mollitia animi, id est laborum et dolorum fuga. Et harum quidem rerum facilis est et expedita distinctio.|;
#Nam libero tempore, cum soluta nobis est eligendi optio, cumque nihil impedit, quo minus id, quod maxime placeat, facere possimus, omnis voluptas assumenda est, omnis dolor repellendus. Temporibus autem quibusdam et aut officiis debitis aut rerum necessitatibus saepe eveniet, ut et voluptates repudiandae sint et molestiae non recusandae. Itaque earum rerum hic tenetur a sapiente delectus, ut aut reiciendis voluptatibus maiores alias consequatur aut perferendis doloribus asperiores repellat.|;
##push @ARGV, "../../old PDF-APIx/work-PDF-Builder/codec/codec.bdf" if !scalar @ARGV; # TEMP
die "Require one BDFont file on command line.\n" if !scalar @ARGV;
die "Requested BDFont file $ARGV[0] not found.\n" if !-e $ARGV[0];
my $data = PDF::Builder::Resource::Font::BdFont->readBDF($ARGV[0]);
#print Dumper($data);
my $pdf = PDF::Builder->new(-compress => $compress);
if ($doDump) {
# loop through characters in font file. ONE PAGE per character!!
my $font = $pdf->corefont('Helvetica');
my $fontsize = 10;
foreach my $char (@{$data->{'char2'}}) {
my $page = $pdf->page();
$page->mediabox('A4'); # 595,842
my $txt = $page->text();
my $gfx = $page->gfx(); # BDF char is presented as an image
print "C: $char->{'NAME'} ($char->{'ENCODING'})\n";
my @bbx = @{$char->{'BBX'}};
if (!defined $char->{'hex'}) {
# must be a space. give it a hex pattern to avoid error message
$char->{'hex'} = '0000';
}
my $stream = pack('H*', $char->{'hex'});
my $y = $bbx[1]; # vertical dimension of character (bits)
# to be shifted up or down by bbx[3] bits
my $xpos = 100;
my $ypos = 760;
# moved from 50 50 (lower left of page) to 100 760 (upper left)
# with CHR(nn) inserted (temporarily)
$txt->translate($xpos-80, $ypos);
$txt->font($font, $fontsize);
$txt->fillcolor('black');
$txt->text("CHR(".$char->{'ENCODING'}.")");
my $cx = $xpos + $bbx[2];
my $cy = $ypos + $bbx[3];
$gfx->strokecolor('red'); # draw character start point and baseline
# (10 high x 15 wide box)
$gfx->linewidth(1);
$gfx->move($xpos-1, $ypos+10-1);
$gfx->vline($ypos);
$gfx->hline($xpos + 15);
$gfx->stroke();
$gfx->strokecolor('black');
next unless $y; # empty char has $y = 0
my $x = 8*length($stream)/$y;
my $img = qq|q $x 0 0 $y $cx $cy cm
BI
/Interpolate false /Decode [1 0] /H $y /W $x /BPC 1 /CS /G
ID $stream
EI
Q|;
$gfx->add($img);
delete $gfx->{'Filter'};
} # loop through characters in font file that was read in
} # do we show one character per page?
# show one page of 256 glyphs, in specified coding
my $sx = 33; # cell width
my $sy = 45; # cell height
my $fx = 20; # ascender max
my $f1 = $pdf->corefont('Helvetica');
my $f2 = $pdf->corefont('Times-Roman');
#my $font = $pdf->bdfont($ARGV[0]); # default block style
#my $font = $pdf->bdfont($ARGV[0], -style=>'block'); # explicit block style
my $font = $pdf->bdfont($ARGV[0], -style=>'dot');
my $page = $pdf->page();
$page->mediabox('A4'); # 595x842
my $gfx = $page->gfx();
my $txt = $page->text();
$txt->strokecolor('#000'); # actually, only filling
$txt->fillcolor('#000');
$txt->font($font, $fx);
my $txt2 = $page->text();
# title of font names
$txt2->translate(50,800);
$txt2->font($f1, 15);
$txt2->text("font='".$font->fontname()." / ".$font->name()."'");
# compact text for 4 lines beneath each cell
$txt2->font($f1, 5);
$txt2->hscale(80);
# underline or cell bottom pts below baseline (<0) to clear descenders
my $u = $font->underlineposition()*$fx/1000;
# loop character group (row) from low to high
foreach my $yp (0..15) {
my $y = 15 - $yp; # row position grows high to low (top to bottom)
print STDERR ".";
# loop column left to right
foreach my $x (0..15) {
my $ci = $yp*16 + $x;
my $c = chr($ci);
$txt->translate(50+($sx*$x),50+($sy*$y)); # character position
$txt->text($c); # the character itself, in bitmapped font
my $wx = $font->width($c)*$fx; # character width in grid units (1000)
my $wxs = $wx; # desired on-screen width in pixels
# draw lt blue character cell: width of character, full des/asc height
$gfx->strokecolor('lightblue');
$gfx->move(50+($sx*$x),50+($sy*$y)+$fx); # UL corner
$gfx->line(50+($sx*$x),50+($sy*$y)+$u); # LL corner
$gfx->line(50+($sx*$x)+$wxs,50+($sy*$y)+$u); # LR corner
$gfx->line(50+($sx*$x)+$wxs,50+($sy*$y)+$fx); # UR corner
$gfx->close();
$gfx->stroke();
$gfx->strokecolor('gray'); # baseline
$gfx->move(50+($sx*$x),50+($sy*$y));
$gfx->line(50+($sx*$x)+$wxs,50+($sy*$y));
$gfx->stroke();
$txt2->translate(50+($sx*$x)+2,50+($sy*$y)-9);
$txt2->text($ci); # decimal character number
$txt2->translate(50+($sx*$x)+2,50+($sy*$y)-14);
# Unicode number (16 bit)
if (defined $font->uniByEnc($ci)) {
$txt2->text(sprintf('U+%04X',$font->uniByEnc($ci)));
} else {
#$txt2->text('U+????');
$txt2->text(sprintf('U+%04X', $ci)); # is Latin-1
}
$txt2->translate(50+($sx*$x)+2,50+($sy*$y)-19);
$txt2->text($font->glyphByEnc($ci)); # glyph name
$txt2->translate(50+($sx*$x)+2,50+($sy*$y)-24);
$txt2->text(sprintf('wx=%d',$font->wxByEnc($ci))); # glyph width
} # column loop (x)
} # row loop (yp/y)
if ($doText) {
# print out some text in this font on next page
my $textL = $LoremIpsum;
$page = $pdf->page();
$page->mediabox('A4');
$txt = $page->text();
$txt->fillcolor('black');
$txt->transform(-translate => [50, 800]);
$txt->font($f1, 18);
$txt->leading(18*1.25);
$txt->text("Some 18 point Helvetica text");
$txt->font($f2, 18);
$txt->leading(18*1.25);
$txt->text(" Some 18 point Times-Roman text");
$txt->transform(-translate => [50, 800-18*1.25]);
$txt->font($font, 18);
$txt->leading(18*1.25);
my $toprint;
while ($textL ne '') {
($toprint, $textL) = $txt->_text_fill_line($textL, 500, 0);
$txt->text($toprint);
$txt->nl();
}
}
delete $gfx->{'Filter'};
delete $txt->{'Filter'};
delete $txt2->{'Filter'};
my $myName = basename($ARGV[0]);
$myName =~ s/\.bdf$//i; # trim off extension
$pdf->saveas("$0.$myName.pdf");
$pdf->end();
print STDERR "\n";
__END__
|