diff options
author | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2006-11-26 14:07:44 +0000 |
---|---|---|
committer | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2006-11-26 14:07:44 +0000 |
commit | 0e5035729a2092ccc5045597199839f4a78326f2 (patch) | |
tree | a2e0bb0220f633e52b4046fefff372fd72d23016 /app/fonttosfnt/fonttosfnt.c | |
parent | 245f2ccea1875b950741782f7e74d2194f62d0b9 (diff) |
Importing from X.Org indiviual releases
Diffstat (limited to 'app/fonttosfnt/fonttosfnt.c')
-rw-r--r-- | app/fonttosfnt/fonttosfnt.c | 118 |
1 files changed, 118 insertions, 0 deletions
diff --git a/app/fonttosfnt/fonttosfnt.c b/app/fonttosfnt/fonttosfnt.c new file mode 100644 index 000000000..e8e41b08d --- /dev/null +++ b/app/fonttosfnt/fonttosfnt.c @@ -0,0 +1,118 @@ +/* +Copyright (c) 2002-2003 by Juliusz Chroboczek + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. +*/ +/* $XdotOrg: xc/programs/fonttosfnt/fonttosfnt.c,v 1.4 2003/12/19 02:16:36 dawes Exp $ */ +/* $XFree86: xc/programs/fonttosfnt/fonttosfnt.c,v 1.3 2003/07/08 15:39:49 tsi Exp $ */ + +#include <stdio.h> +#include <stdlib.h> +#include <string.h> +#include "fonttosfnt.h" + +int verbose_flag = 0; +int reencode_flag = 1; +int glyph_flag = 2; +int metrics_flag = 1; +int crop_flag = 1; +int bit_aligned_flag = 1; + +static void +usage(void) +{ + fprintf(stderr, "Usage:\n"); + fprintf(stderr, + "fonttosfnt [ -v ] [ -c ] [ -b ] [ -r ] [ -g n ] [ -m n ] -o font.ttf " + "[ -- ] font ...\n"); +} + +int +main(int argc, char **argv) +{ + int i; + int rc; + char *output = NULL; + FontPtr font; + + i = 1; + while(i < argc) { + if(argv[i][0] != '-') + break; + + if(argv[i][1] == 'o') { + if(argv[i][2] == '\0') { + output = sprintf_reliable("%s", argv[i + 1]); + i += 2; + } else { + output = sprintf_reliable("%s", argv[i] + 2); + i++; + } + } else if(strcmp(argv[i], "-v") == 0) { + verbose_flag = 1; + i++; + } else if(strcmp(argv[i], "-c") == 0) { + crop_flag = 0; + i++; + } else if(strcmp(argv[i], "-b") == 0) { + bit_aligned_flag = 0; + i++; + } else if(strcmp(argv[i], "-r") == 0) { + reencode_flag = 0; + i++; + } else if(strcmp(argv[i], "-g") == 0) { + if(argc <= i + 1) { + usage(); + exit(1); + } + glyph_flag = atoi(argv[i + 1]); + i += 2; + } else if(strcmp(argv[i], "-m") == 0) { + if(argc <= i + 1) { + usage(); + exit(1); + } + metrics_flag = atoi(argv[i + 1]); + i += 2; + } else if(strcmp(argv[i], "--") == 0) { + i++; + break; + } else { + usage(); + exit(1); + } + } + + if(output == NULL) { + usage(); + exit(1); + } + + font = makeFont(); + + while(i < argc) { + rc = readFile(argv[i], font); + if(rc != 0) + exit(1); + i++; + } + + writeFile(output, font); + return 0; +} |