2 main routine for pdf2swf(1)
4 Part of the swftools package.
6 Copyright (c) 2001 Matthias Kramm <kramm@quiss.org>
8 This file is distributed under the GPL, see file COPYING for details */
14 #include "../config.h"
15 #include "../lib/args.h"
22 static char * outputname = 0;
23 static int loglevel = 3;
24 static char * pagerange = 0;
25 static char * filename = 0;
26 static char * password = 0;
28 int args_callback_option(char*name,char*val) {
29 if (!strcmp(name, "o"))
34 else if (!strcmp(name, "v"))
39 else if (name[0]=='p')
41 /* check whether the page range follows the p directly, like
45 } while(*name == 32 || *name == 13 || *name == 10 || *name == '\t');
54 else if (!strcmp(name, "P"))
59 else if (!strcmp(name, "s"))
61 pdfswf_drawonlyshapes();
64 else if (!strcmp(name, "i"))
66 pdfswf_ignoredraworder();
69 else if (name[0]=='j')
72 pdfswf_jpegquality(atoi(&name[1]));
75 pdfswf_jpegquality(atoi(val));
79 else if (!strcmp(name, "V"))
81 printf("pdf2swf - part of %s %s\n", PACKAGE, VERSION);
86 fprintf(stderr, "Unknown option: -%s\n", name);
92 struct options_t options[] =
102 int args_callback_longoption(char*name,char*val) {
103 return args_long2shortoption(options, name, val);
106 int args_callback_command(char*name, char*val) {
112 fprintf(stderr, "Error: Do you want the output to go to %s or to %s?",
121 void args_callback_usage(char*name)
123 printf("Usage: %s [-si] [-j quality] [-p range] [-P password] input.pdf [output.swf]\n", name);
125 printf("-p --pages=range Convert only pages in range\n");
126 printf("-P --password=password Use password for deciphering the pdf\n");
127 printf("-s --shapes Don't use SWF Fonts, but store everything as shape\n");
128 printf("-i --ignore Ignore draw order (makes the SWF file smaller)\n");
129 printf("-j --jpegquality=quality Set quality of embedded jpeg pictures (default:85)\n");
130 printf("-v --verbose Be verbose. Use more than one -v for greater effect\n");
131 printf("-V --version Print program version\n");
134 /* check whether the value t is in a given range.
135 examples: 3 is in range 1-10: true
136 7 is in range 2-4,6,8-10: false
137 9 is in range 1,2,3-12: true
139 char is_in_range(int t, char*irange)
148 if(!irange) // no range resembles (-OO,OO)
153 while(*pos == ' ' || *pos == '\r' || *pos == '\n' || *pos == '\t')
157 while(*digits>='0' && *digits<='9')
160 fprintf(stderr, "Error: \"%s\" is not a valid format (digit expected)\n",irange);
164 tmp=*digits;*digits=0;
169 while(*pos == ' ' || *pos == '\r' || *pos == '\n' || *pos == '\t')
172 if(range && last<=t && num>=t)
184 fprintf(stderr, "Error: \"%s\" is not a valid format (too many '-'s)\n",irange);
195 /* if it isn't a '-', we assume it is a seperator like
196 ',', ';', ':', whatever. */
209 int main(int argn, char *argv[])
212 processargs(argn, argv);
213 initLog(0,-1,0,0,-1,loglevel);
216 fprintf(stderr, "Please use -o to specify an output file\n");
220 // test if the page range is o.k.
221 is_in_range(0x7fffffff, pagerange);
224 args_callback_usage(argv[0]);
228 logf("<verbose> reading data files from %s\n", DATADIR);
229 //TODO: use tempnam here. Check if environment already contains a
231 putenv( "T1LIB_CONFIG=/tmp/t1lib.config.tmp");
232 FILE*fi = fopen("/tmp/t1lib.config.tmp", "wb");
233 fprintf(fi, "FONTDATABASE=%s/FontDataBase\n", DATADIR);
234 fprintf(fi, "ENCODING=%s:.\n", DATADIR);
235 fprintf(fi, "AFM=%s:.\n", DATADIR);
236 fprintf(fi, "TYPE1=%s:.\n", DATADIR);
238 /* initialize t1lib */
239 T1_SetBitmapPad( 16);
240 if ((T1_InitLib(NO_LOGFILE)==NULL)){
241 fprintf(stderr, "Initialization of t1lib failed\n");
244 unlink("/tmp/t1lib.config.tmp");
246 pdfswf_init(filename, password);
247 pdfswf_setoutputfilename(outputname);
249 int pages = pdfswf_numpages();
251 for(t = 1; t <= pages; t++)
253 if(is_in_range(t, pagerange))
254 pdfswf_convertpage(t);