Turn off font subsetting when generating glyph complement.

After all, we do rather need the full font.  Admittedly, we don't need
the 14 copies tht Ghostscript 9.18 puts in, but this still somehow
makes the file smaller.
This commit is contained in:
Ben Harris 2017-07-31 22:26:40 +01:00
parent dfcf8b3207
commit 8371e8afb8

View File

@ -2151,6 +2151,7 @@ glyph_complement()
printf("%%!PS-Adobe\n");
printf("%%%%Creator: bedstead\n");
printf("%%%%Title: Bedstead Glyph Complement\n");
printf("%%%%LanguageLevel: 2\n");
printf("/xfont /Bedstead findfont 20 scalefont def\n");
printf("/lfont /Bedstead findfont 4 scalefont def\n");
printf("/str 50 string def\n");
@ -2169,6 +2170,8 @@ glyph_complement()
printf(" 0 0 moveto 0 40 lineto 40 40 lineto 40 0 lineto closepath\n");
printf(" 1 setlinewidth stroke\n");
printf("} def\n");
printf("/setdistillerparams where\n");
printf("{ pop << /SubsetFonts false >> setdistillerparams } if\n");
printf("%%%%EndProlog\n");
for (i = 0; i < nglyphs; i++) {
if (i % (nrow*ncol) == 0) {