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
|
/* t1binary
*
* This program takes an Adobe Type-1 font program in ASCII (PFA) format and
* converts it to binary (PFB) format.
*
* Copyright (c) 1992 by I. Lee Hetherington, all rights reserved.
*
* Permission is hereby granted to use, modify, and distribute this program
* for any purpose provided this copyright notice and the one below remain
* intact.
*
* I. Lee Hetherington (ilh@lcs.mit.edu)
*
* 1.5 and later versions contain changes by, and are maintained by,
* Eddie Kohler <kohler@icir.org>.
*
* New change log in `NEWS'. Old change log:
*
* Revision 1.2 92/06/23 10:58:08 ilh
* MSDOS porting by Kai-Uwe Herbing (herbing@netmbx.netmbx.de)
* incoporated.
*
* Revision 1.1 92/05/22 11:58:17 ilh
* initial version
*
* Ported to Microsoft C/C++ Compiler and MS-DOS operating system by
* Kai-Uwe Herbing (herbing@netmbx.netmbx.de) on June 12, 1992. Code
* specific to the MS-DOS version is encapsulated with #ifdef _MSDOS
* ... #endif, where _MSDOS is an identifier, which is automatically
* defined, if you compile with the Microsoft C/C++ Compiler.
*
*/
/* Note: this is ANSI C. */
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#if defined(_MSDOS) || defined(_WIN32)
# include <fcntl.h>
# include <io.h>
#endif
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <ctype.h>
#include <limits.h>
#include <stdarg.h>
#include <errno.h>
#include <lcdf/clp.h>
#include "t1lib.h"
#ifdef __cplusplus
extern "C" {
#endif
typedef unsigned char byte;
/* for PFB block buffering */
static struct pfb_writer w;
/* PFB font_reader functions */
static void
pfb_output_ascii(char *s, int len)
{
if (w.blocktyp == PFB_BINARY) {
pfb_writer_output_block(&w);
w.blocktyp = PFB_ASCII;
}
for (; len > 0; len--, s++)
PFB_OUTPUT_BYTE(&w, (byte)*s);
}
static void
pfb_output_binary(unsigned char *s, int len)
{
if (w.blocktyp == PFB_ASCII) {
pfb_writer_output_block(&w);
w.blocktyp = PFB_BINARY;
}
for (; len > 0; len--, s++)
PFB_OUTPUT_BYTE(&w, *s);
}
static void
pfb_output_end()
{
pfb_writer_end(&w);
}
/*****
* Command line
**/
#define BLOCK_LEN_OPT 300
#define OUTPUT_OPT 301
#define VERSION_OPT 302
#define HELP_OPT 303
static Clp_Option options[] = {
{ "block-length", 'l', BLOCK_LEN_OPT, Clp_ArgInt, 0 },
{ "help", 0, HELP_OPT, 0, 0 },
{ "length", 0, BLOCK_LEN_OPT, Clp_ArgInt, 0 },
{ "output", 'o', OUTPUT_OPT, Clp_ArgString, 0 },
{ "version", 0, VERSION_OPT, 0, 0 },
};
static const char *program_name;
void
fatal_error(const char *message, ...)
{
va_list val;
va_start(val, message);
fprintf(stderr, "%s: ", program_name);
vfprintf(stderr, message, val);
putc('\n', stderr);
exit(1);
}
void
error(const char *message, ...)
{
va_list val;
va_start(val, message);
fprintf(stderr, "%s: ", program_name);
vfprintf(stderr, message, val);
putc('\n', stderr);
}
void
short_usage(void)
{
fprintf(stderr, "Usage: %s [OPTION]... [INPUT [OUTPUT]]\n\
Try `%s --help' for more information.\n",
program_name, program_name);
}
void
usage(void)
{
printf("\
`T1binary' translates a PostScript Type 1 font from ASCII (PFA) to compact\n\
binary (PFB) format. The result is written to the standard output unless an\n\
OUTPUT file is given.\n\
\n\
Usage: %s [OPTION]... [INPUT [OUTPUT]]\n\
\n\
Options:\n\
-l, --block-length=NUM Set max output block length.\n\
-o, --output=FILE Write output to FILE.\n\
-h, --help Print this message and exit.\n\
--version Print version number and warranty and exit.\n\
\n\
Report bugs to <kohler@icir.org>.\n", program_name);
}
#ifdef __cplusplus
}
#endif
int
main(int argc, char *argv[])
{
int c;
FILE *ifp = 0, *ofp = 0;
const char *ifp_filename = "<stdin>";
struct font_reader fr;
int max_blocklen = -1;
Clp_Parser *clp =
Clp_NewParser(argc, (const char * const *)argv, sizeof(options) / sizeof(options[0]), options);
program_name = Clp_ProgramName(clp);
/* interpret command line arguments using CLP */
while (1) {
int opt = Clp_Next(clp);
switch (opt) {
case BLOCK_LEN_OPT:
max_blocklen = clp->val.i;
if (max_blocklen <= 0) {
max_blocklen = 1;
error("warning: block length raised to %d", max_blocklen);
}
break;
output_file:
case OUTPUT_OPT:
if (ofp)
fatal_error("output file already specified");
if (strcmp(clp->arg, "-") == 0)
ofp = stdout;
else {
ofp = fopen(clp->arg, "wb");
if (!ofp) fatal_error("%s: %s", clp->arg, strerror(errno));
}
break;
case HELP_OPT:
usage();
exit(0);
break;
case VERSION_OPT:
printf("t1binary (LCDF t1utils) %s\n", VERSION);
printf("Copyright (C) 1992-2003 I. Lee Hetherington, Eddie Kohler et al.\n\
This is free software; see the source for copying conditions.\n\
There is NO warranty, not even for merchantability or fitness for a\n\
particular purpose.\n");
exit(0);
break;
case Clp_NotOption:
if (ifp && ofp)
fatal_error("too many arguments");
else if (ifp)
goto output_file;
if (strcmp(clp->arg, "-") == 0)
ifp = stdin;
else {
ifp_filename = clp->arg;
ifp = fopen(clp->arg, "r");
if (!ifp) fatal_error("%s: %s", clp->arg, strerror(errno));
}
break;
case Clp_Done:
goto done;
case Clp_BadOption:
short_usage();
exit(1);
break;
}
}
done:
if (!ifp) ifp = stdin;
if (!ofp) ofp = stdout;
#if defined(_MSDOS) || defined(_WIN32)
/* As we are processing a PFB (binary) output */
/* file, we must set its file mode to binary. */
_setmode(_fileno(ofp), _O_BINARY);
#endif
/* prepare font reader and pfb writer */
fr.output_ascii = pfb_output_ascii;
fr.output_binary = pfb_output_binary;
fr.output_end = pfb_output_end;
init_pfb_writer(&w, max_blocklen, ofp);
/* peek at first byte to see if it is the PFB marker 0x80 */
c = getc(ifp);
ungetc(c, ifp);
/* do the file */
if (c == PFB_MARKER)
process_pfb(ifp, ifp_filename, &fr);
else if (c == '%')
process_pfa(ifp, ifp_filename, &fr);
else
fatal_error("%s does not start with font marker (`%%' or 0x80)", ifp_filename);
fclose(ifp);
fclose(ofp);
if (!w.binary_blocks_written)
fatal_error("no binary blocks written! Are you sure this was a font?");
return 0;
}
|