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_drawonlyshapes();
138 else if (!strcmp(name, "i"))
140 pdfswf_ignoredraworder();
143 else if (!strcmp(name, "z"))
148 else if (!strcmp(name, "n"))
150 pdfswf_linksopennewwindow();
153 else if (!strcmp(name, "t"))
158 else if (!strcmp(name, "T"))
161 if(!strcasecmp(val, "mx"))
163 pdfswf_setversion(i);
166 else if (!strcmp(name, "f"))
168 pdfswf_storeallcharacters();
171 else if (!strcmp(name, "F"))
173 char *s = strdup(val);
175 while(l && s[l-1]=='/') {
179 fontpaths[fontpathpos++] = s;
182 else if (!strcmp(name, "l"))
185 sprintf(buf, "%s/default_loader.swf", SWFDIR);
186 preloader = strdup(buf);
189 else if (!strcmp(name, "b"))
192 sprintf(buf, "%s/default_viewer.swf", SWFDIR);
193 viewer = strdup(buf);
196 else if (!strcmp(name, "L"))
204 systemf("ls %s/*_loader.swf", SWFDIR);
211 else if (!strcmp(name, "B"))
219 systemf("ls %s/*_viewer.swf", SWFDIR);
226 else if (!strcmp(name, "j"))
229 pdfswf_jpegquality(atoi(&name[1]));
232 pdfswf_jpegquality(atoi(val));
236 else if (!strcmp(name, "V"))
238 printf("pdf2swf - part of %s %s\n", PACKAGE, VERSION);
243 fprintf(stderr, "Unknown option: -%s\n", name);
249 /*struct docoptions_t options[] =
250 {{"o","output","filename::Specify output file"},
251 {"V","version","Print program version"},
252 {"i","ignore","Ignore draw order (makes the SWF file smaller, but may produce graphic errors)"},
253 {"z","zlib","Use Flash 6 (MX) zlib compression (Needs at least Flash 6 Plugin to play)"},
254 {"s","shapes","Don't use SWF Fonts, but store everything as shape"},
255 {"j","jpegquality","Set quality of embedded jpeg pictures (default: 85)"},
256 {"p","pages","Convert only pages in range. (E.g. 3-85)"},
257 {"w","samewindow","Don't open a new browser window for links in the SWF"},
258 {"f","fonts","Stroe full fonts in SWF. (Don't reduce to used characters)"},
259 {"F","fontpath","path::Add directory to font search path"},
260 {"B","viewer","name::Link viewer \"name\" to the pdf"},
261 {"L","preloader","file.swf::Link preloader \"file.swf\" to the pdf"},
262 {"b","defaultviewer","Link default viewer to the pdf"},
263 {"l","defaultpreloader","Link default preloader to the pdf"}
266 struct options_t options[] =
281 {"b","defaultviewer"},
282 {"l","defaultpreloader"},
284 {"T","flashversion"},
288 int args_callback_longoption(char*name,char*val) {
289 return args_long2shortoption(options, name, val);
292 int args_callback_command(char*name, char*val) {
298 fprintf(stderr, "Error: Do you want the output to go to %s or to %s?",
307 void args_callback_usage(char*name)
309 printf("Usage: %s [Options] input.pdf [-o output.swf]\n", name);
310 printf("\nBasic options:\n");
311 printf("-p --pages=range Convert only pages in range\n");
312 printf("-P --password=password Use password for deciphering the pdf\n");
313 printf("-v --verbose Be verbose. Use more than one -v for greater effect\n");
314 printf("-q --quiet Suppress normal messages. Use -qq to suppress warnings, also.\n");
316 printf("-F --fontdir directory Add directory to font search path\n");
318 printf("-V --version Print program version\n");
319 printf("\nEnhanced conversion options:\n");
320 printf("-S --shapes Don't use SWF Fonts, but store everything as shape\n");
321 printf("-z --zlib Use Flash 6 (MX) zlib compression (Needs at least Flash 6 Plugin to play)\n");
322 printf("-w --samewindow Don't open a new Browser Window for Links in the SWF\n");
323 printf("-f --fonts Store full fonts in SWF. (Don't reduce to used characters)\n");
324 printf("-T --flashversion=num Set the flash version in the header to num (default: 4)\n");
325 printf("-s insertstop Insert a \"Stop\" Tag in every frame (don't turn pages automatically)\n");
326 printf("-s jpegquality=quality Set quality of embedded jpeg pictures (default:85)\n");
327 printf("-s caplinewidth=value Set the minimum line width to trigger cap style handling to value. (3)\n");
328 printf("-s splinequality=value Set the quality of spline convertion to value (0-100, default: 100).\n");
329 printf("-s fontquality=value Set the quality of font convertion to value (0-100, default: 100).\n");
330 printf("-s ignoredraworder Ignore draw order (makes the SWF file smaller, but may produce\n"
331 " graphic errors)\n");
332 printf("-s filloverlap Make intersecting shapes overlap, instead of canceling each\n"
333 " other out. (Needed for some Powerpoint PDFs)\n");
334 printf("Postprocessing options:\n");
335 #ifndef SYSTEM_BACKTICKS
336 printf("(They might not work because your system call doesn't support command substitution)\n");
338 printf("-b --defaultviewer Link default viewer to the pdf (%s/swfs/default_viewer.swf)\n", SWFTOOLS_DATADIR);
339 printf("-l --defaultpreloader Link default preloader the pdf (%s/swfs/default_loader.swf)\n", SWFTOOLS_DATADIR);
340 printf("-B --viewer=filename Link viewer \"name\" to the pdf (\"%s -B\" for list)\n", name);
341 printf("-L --preloader=filename Link preloader \"name\" to the pdf (\"%s -L\" for list)\n",name);
345 void addfontdir(char* dirname, int*numfonts)
348 msg("<verbose> Adding %s to search path\n", dirname);
350 DIR*dir = opendir(dirname);
352 msg("<warning> Couldn't open directory %s\n", dirname);
361 char*name = ent->d_name;
367 if(!strncasecmp(&name[l-4], ".pfa", 4))
369 if(!strncasecmp(&name[l-4], ".pfb", 4))
371 if(!strncasecmp(&name[l-4], ".ttf", 4))
375 char*fontname = (char*)malloc(strlen(dirname)+strlen(name)+2);
376 strcpy(fontname, dirname);
378 strcat(fontname, "\\");
380 strcat(fontname, "/");
382 strcat(fontname, name);
384 msg("<debug> Adding %s to fonts", fontname);
385 pdfswf_addfont(fontname);
394 char* stripfilename(char*filename, char*newext)
396 char*last1 = strrchr(filename, '/');
397 char*last2 = strrchr(filename, '\\');
401 if(last1>pos) pos = last1 + 1;
402 if(last2>pos) pos = last2 + 1;
403 name = (char*)malloc(strlen(pos)+5);
405 dot = strrchr(name, '.');
409 strcat(name, newext);
413 int main(int argn, char *argv[])
419 char t1searchpath[1024];
421 #if defined(WIN32) && defined(HAVE_STAT) && defined(HAVE_SYS_STAT_H)
422 FILE*test = fopen(FONTDIR "\\d050000l.afm", "rb");
424 fprintf(stderr, "Couldn't find file " FONTDIR "\\d050000l.afm- pdf2swf not installed properly? OS says:\n");
438 processargs(argn, argv);
439 initLog(0,-1,0,0,-1,loglevel);
443 fprintf(stderr, "Please specify an input file\n");
450 outputname = stripfilename(filename, ".swf");
451 msg("<notice> Output filename not given. Writing to %s", outputname);
457 fprintf(stderr, "Please use -o to specify an output file\n");
461 // test if the page range is o.k.
462 is_in_range(0x7fffffff, pagerange);
465 args_callback_usage(argv[0]);
471 addfontdir(FONTDIR, &numfonts);
472 for(t=0;t<fontpathpos;t++) {
473 addfontdir(fontpaths[t], &numfonts);
476 addfontdir(FONTDIR, 0);
477 for(t=0;t<fontpathpos;t++) {
478 addfontdir(fontpaths[t], 0);
481 msg("<error> Couldn't find any fonts!");
484 pdfswf_init(filename, password);
485 pdfswf_setoutputfilename(outputname);
487 int pages = pdfswf_numpages();
488 for(t = 1; t <= pages; t++)
490 if(is_in_range(t, pagerange))
491 pdfswf_convertpage(t);
493 pdfswf_performconversion();
497 if(viewer || preloader) {
498 #ifndef SYSTEM_BACKTICKS
499 msg("<warning> Not sure whether system() can handle command substitution");
500 msg("<warning> (According to config.h, it can't)");
506 if(viewer && !preloader) {
507 systemf("swfcombine `swfdump -XY \"%s\"` \"%s\" viewport=\"%s\" -o \"%s\"",
508 outputname, viewer, outputname, outputname);
512 if(preloader && !viewer) {
513 msg("<warning> --preloader option without --viewer option doesn't make very much sense.");
514 ret = systemf("swfcombine `swfdump -r \"%s\"` %s/PreLoaderTemplate.swf loader=\"%s\" movie=\"%s\" -o \"%s\"",
515 preloader, SWFDIR, preloader, outputname, outputname);
519 if(preloader && viewer) {
520 systemf("swfcombine \"%s\" viewport=%s -o __tmp__.swf",
521 viewer, outputname, outputname);
522 systemf("swfcombine `swfdump -XY \"%s\"` `swfdump -r \"%s\"` %s/PreLoaderTemplate.swf loader=%s movie=__tmp__.swf -o \"%s\"",
523 outputname, preloader, SWFDIR, preloader, outputname);
524 systemf("rm __tmp__.swf");