2 main routine for pdf2swf(1)
4 Part of the swftools package.
6 Copyright (c) 2001,2002,2003 Matthias Kramm <kramm@quiss.org>
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
27 #include "../config.h"
31 #ifdef HAVE_SYS_STAT_H
34 #include "../lib/args.h"
35 #include "SWFOutputDev.h"
41 #define FONTDIR SWFTOOLS_DATADIR "/fonts"
42 #define SWFDIR SWFTOOLS_DATADIR "/swfs"
44 #define FONTDIR "C:\\swftools\\fonts"
45 #define SWFDIR "C:\\swftools\\swfs"
48 static char * outputname = 0;
49 static int loglevel = 3;
50 static char * pagerange = 0;
51 static char * filename = 0;
52 static char * password = 0;
54 static char * preloader = 0;
55 static char * viewer = 0;
60 static int system_quiet=0;
62 int systemf(const char* format, ...)
67 va_start(arglist, format);
68 vsprintf(buf, format, arglist);
77 fprintf(stderr, "system() returned %d\n", ret);
83 int args_callback_option(char*name,char*val) {
84 if (!strcmp(name, "o"))
89 else if (!strcmp(name, "v"))
94 else if (!strcmp(name, "q"))
100 else if (name[0]=='p')
102 /* check whether the page range follows the p directly, like
106 } while(*name == 32 || *name == 13 || *name == 10 || *name == '\t');
115 else if (!strcmp(name, "P"))
120 else if (!strcmp(name, "s"))
122 char*s = strdup(val);
123 char*c = strchr(s, '=');
124 if(c && *c && c[1]) {
127 pdfswf_setparameter(s,c);
130 pdfswf_setparameter(s,"1");
133 else if (!strcmp(name, "S"))
135 pdfswf_setparameter("drawonlyshapes", "1");
138 else if (!strcmp(name, "i"))
140 pdfswf_setparameter("ignoredraworder", "1");
143 else if (!strcmp(name, "z"))
145 pdfswf_setparameter("enablezlib", "1");
148 else if (!strcmp(name, "n"))
150 pdfswf_setparameter("opennewwindow", "1");
153 else if (!strcmp(name, "t"))
155 pdfswf_setparameter("insertstop", "1");
158 else if (!strcmp(name, "T"))
160 if(!strcasecmp(val, "mx"))
161 pdfswf_setparameter("flashversion", "6");
163 pdfswf_setparameter("flashversion", val);
167 else if (!strcmp(name, "f"))
169 pdfswf_setparameter("storeallcharacters", "1");
172 else if (!strcmp(name, "F"))
174 char *s = strdup(val);
176 while(l && s[l-1]=='/') {
180 fontpaths[fontpathpos++] = s;
183 else if (!strcmp(name, "l"))
186 sprintf(buf, "%s/default_loader.swf", SWFDIR);
187 preloader = strdup(buf);
190 else if (!strcmp(name, "b"))
193 sprintf(buf, "%s/default_viewer.swf", SWFDIR);
194 viewer = strdup(buf);
197 else if (!strcmp(name, "L"))
205 systemf("ls %s/*_loader.swf", SWFDIR);
212 else if (!strcmp(name, "B"))
220 systemf("ls %s/*_viewer.swf", SWFDIR);
227 else if (!strcmp(name, "j"))
230 pdfswf_setparameter("jpegquality", &name[1]);
233 pdfswf_setparameter("jpegquality", val);
237 else if (!strcmp(name, "V"))
239 printf("pdf2swf - part of %s %s\n", PACKAGE, VERSION);
244 fprintf(stderr, "Unknown option: -%s\n", name);
250 /*struct docoptions_t options[] =
251 {{"o","output","filename::Specify output file"},
252 {"V","version","Print program version"},
253 {"i","ignore","Ignore draw order (makes the SWF file smaller, but may produce graphic errors)"},
254 {"z","zlib","Use Flash 6 (MX) zlib compression (Needs at least Flash 6 Plugin to play)"},
255 {"s","shapes","Don't use SWF Fonts, but store everything as shape"},
256 {"j","jpegquality","Set quality of embedded jpeg pictures (default: 85)"},
257 {"p","pages","Convert only pages in range. (E.g. 3-85)"},
258 {"w","samewindow","Don't open a new browser window for links in the SWF"},
259 {"f","fonts","Stroe full fonts in SWF. (Don't reduce to used characters)"},
260 {"F","fontpath","path::Add directory to font search path"},
261 {"B","viewer","name::Link viewer \"name\" to the pdf"},
262 {"L","preloader","file.swf::Link preloader \"file.swf\" to the pdf"},
263 {"b","defaultviewer","Link default viewer to the pdf"},
264 {"l","defaultpreloader","Link default preloader to the pdf"}
267 struct options_t options[] =
282 {"b","defaultviewer"},
283 {"l","defaultpreloader"},
285 {"T","flashversion"},
289 int args_callback_longoption(char*name,char*val) {
290 return args_long2shortoption(options, name, val);
293 int args_callback_command(char*name, char*val) {
299 fprintf(stderr, "Error: Do you want the output to go to %s or to %s?",
308 void args_callback_usage(char*name)
310 printf("Usage: %s [Options] input.pdf [-o output.swf]\n", name);
311 printf("\nBasic options:\n");
312 printf("-p --pages=range Convert only pages in range\n");
313 printf("-P --password=password Use password for deciphering the pdf\n");
314 printf("-v --verbose Be verbose. Use more than one -v for greater effect\n");
315 printf("-q --quiet Suppress normal messages. Use -qq to suppress warnings, also.\n");
317 printf("-F --fontdir directory Add directory to font search path\n");
319 printf("-V --version Print program version\n");
320 printf("\nEnhanced conversion options:\n");
321 printf("-S --shapes Don't use SWF Fonts, but store everything as shape\n");
322 printf("-z --zlib Use Flash 6 (MX) zlib compression (Needs at least Flash 6 Plugin to play)\n");
323 printf("-w --samewindow Don't open a new Browser Window for Links in the SWF\n");
324 printf("-f --fonts Store full fonts in SWF. (Don't reduce to used characters)\n");
325 printf("-T --flashversion=num Set the flash version in the header to num (default: 4)\n");
326 printf("-s insertstop Insert a \"Stop\" Tag in every frame (don't turn pages automatically)\n");
327 printf("-s zoom=factor Scale result, default: 72\n");
328 printf("-s jpegquality=quality Set quality of embedded jpeg pictures (default:85)\n");
329 printf("-s caplinewidth=value Set the minimum line width to trigger cap style handling to value. (3)\n");
330 printf("-s splinequality=value Set the quality of spline convertion to value (0-100, default: 100).\n");
331 printf("-s fontquality=value Set the quality of font convertion to value (0-100, default: 100).\n");
332 printf("-s ignoredraworder Ignore draw order (makes the SWF file smaller and faster, but may produce\n"
333 " graphic errors)\n");
334 printf("-s filloverlap Make intersecting shapes overlap, instead of canceling each\n"
335 " other out. (Needed for some Powerpoint PDFs)\n");
336 printf("Postprocessing options:\n");
337 #ifndef SYSTEM_BACKTICKS
338 printf("(They might not work because your system call doesn't support command substitution)\n");
340 printf("-b --defaultviewer Link default viewer to the pdf (%s/swfs/default_viewer.swf)\n", SWFTOOLS_DATADIR);
341 printf("-l --defaultpreloader Link default preloader the pdf (%s/swfs/default_loader.swf)\n", SWFTOOLS_DATADIR);
342 printf("-B --viewer=filename Link viewer \"name\" to the pdf (\"%s -B\" for list)\n", name);
343 printf("-L --preloader=filename Link preloader \"name\" to the pdf (\"%s -L\" for list)\n",name);
347 void addfontdir(char* dirname, int*numfonts)
350 msg("<verbose> Adding %s to search path\n", dirname);
352 DIR*dir = opendir(dirname);
354 msg("<warning> Couldn't open directory %s\n", dirname);
363 char*name = ent->d_name;
369 if(!strncasecmp(&name[l-4], ".pfa", 4))
371 if(!strncasecmp(&name[l-4], ".pfb", 4))
373 if(!strncasecmp(&name[l-4], ".ttf", 4))
377 char*fontname = (char*)malloc(strlen(dirname)+strlen(name)+2);
378 strcpy(fontname, dirname);
380 strcat(fontname, "\\");
382 strcat(fontname, "/");
384 strcat(fontname, name);
386 msg("<debug> Adding %s to fonts", fontname);
387 pdfswf_addfont(fontname);
396 char* stripfilename(char*filename, char*newext)
398 char*last1 = strrchr(filename, '/');
399 char*last2 = strrchr(filename, '\\');
403 if(last1>pos) pos = last1 + 1;
404 if(last2>pos) pos = last2 + 1;
405 name = (char*)malloc(strlen(pos)+5);
407 dot = strrchr(name, '.');
411 strcat(name, newext);
415 int main(int argn, char *argv[])
421 char t1searchpath[1024];
423 #if defined(WIN32) && defined(HAVE_STAT) && defined(HAVE_SYS_STAT_H)
424 FILE*test = fopen(FONTDIR "\\d050000l.afm", "rb");
426 fprintf(stderr, "Couldn't find file " FONTDIR "\\d050000l.afm- pdf2swf not installed properly? OS says:\n");
440 processargs(argn, argv);
441 initLog(0,-1,0,0,-1,loglevel);
445 fprintf(stderr, "Please specify an input file\n");
452 outputname = stripfilename(filename, ".swf");
453 msg("<notice> Output filename not given. Writing to %s", outputname);
459 fprintf(stderr, "Please use -o to specify an output file\n");
463 // test if the page range is o.k.
464 is_in_range(0x7fffffff, pagerange);
467 args_callback_usage(argv[0]);
473 addfontdir(FONTDIR, &numfonts);
474 for(t=0;t<fontpathpos;t++) {
475 addfontdir(fontpaths[t], &numfonts);
478 addfontdir(FONTDIR, 0);
479 for(t=0;t<fontpathpos;t++) {
480 addfontdir(fontpaths[t], 0);
483 msg("<error> Couldn't find any fonts!");
486 pdfswf_init(filename, password);
487 pdfswf_setoutputfilename(outputname);
489 int pages = pdfswf_numpages();
490 for(t = 1; t <= pages; t++)
492 if(is_in_range(t, pagerange))
493 pdfswf_convertpage(t);
495 pdfswf_performconversion();
499 if(viewer || preloader) {
500 #ifndef SYSTEM_BACKTICKS
501 msg("<warning> Not sure whether system() can handle command substitution");
502 msg("<warning> (According to config.h, it can't)");
508 if(viewer && !preloader) {
509 systemf("swfcombine `swfdump -XY \"%s\"` \"%s\" viewport=\"%s\" -o \"%s\"",
510 outputname, viewer, outputname, outputname);
514 if(preloader && !viewer) {
515 msg("<warning> --preloader option without --viewer option doesn't make very much sense.");
516 ret = systemf("swfcombine `swfdump -r \"%s\"` %s/PreLoaderTemplate.swf loader=\"%s\" movie=\"%s\" -o \"%s\"",
517 preloader, SWFDIR, preloader, outputname, outputname);
521 if(preloader && viewer) {
522 systemf("swfcombine \"%s\" viewport=%s -o __tmp__.swf",
523 viewer, outputname, outputname);
524 systemf("swfcombine `swfdump -XY \"%s\"` `swfdump -r \"%s\"` %s/PreLoaderTemplate.swf loader=%s movie=__tmp__.swf -o \"%s\"",
525 outputname, preloader, SWFDIR, preloader, outputname);
526 systemf("rm __tmp__.swf");