moved is_in_range to ../args.h.
[swftools.git] / pdf2swf / pdf2swf.cc
1 /* pdf2swf.cc
2    main routine for pdf2swf(1)
3
4    Part of the swftools package.
5    
6    Copyright (c) 2001 Matthias Kramm <kramm@quiss.org> 
7
8    This file is distributed under the GPL, see file COPYING for details */
9
10 #include <stdlib.h>
11 #include <stdio.h>
12 #include <string.h>
13 #include <unistd.h>
14 #include "../config.h"
15 #include "../lib/args.h"
16 #include "pdfswf.h"
17 #include "t1lib.h"
18 extern "C" {
19 #include "log.h"
20 }
21
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;
27
28 int args_callback_option(char*name,char*val) {
29     if (!strcmp(name, "o"))
30     {
31         outputname = val;
32         return 1;
33     }
34     else if (!strcmp(name, "v"))
35     {
36         loglevel ++;
37         return 0;
38     }
39     else if (name[0]=='p')
40     {
41         /* check whether the page range follows the p directly, like 
42            in -p1,2 */
43         do {
44             name++;
45         } while(*name == 32 || *name == 13 || *name == 10 || *name == '\t');
46
47         if(*name) {
48             pagerange = name;
49             return 0;
50         } 
51         pagerange = val;        
52         return 1;
53     }
54     else if (!strcmp(name, "P"))
55     {
56         password = val;
57         return 1;
58     }
59     else if (!strcmp(name, "s"))
60     {
61         pdfswf_drawonlyshapes();
62         return 0;
63     }
64     else if (!strcmp(name, "i"))
65     {
66         pdfswf_ignoredraworder();
67         return 0;
68     }
69     else if (!strcmp(name, "n"))
70     {
71         pdfswf_linksopennewwindow();
72         return 0;
73     }
74     else if (!strcmp(name, "f"))
75     {
76         pdfswf_storeallcharacters();
77         return 0;
78     }
79     else if (name[0]=='j')
80     {
81         if(name[1]) {
82             pdfswf_jpegquality(atoi(&name[1]));
83             return 0;
84         } else {
85             pdfswf_jpegquality(atoi(val));
86             return 1;
87         }
88     }
89     else if (!strcmp(name, "V"))
90     {   
91         printf("pdf2swf - part of %s %s\n", PACKAGE, VERSION);
92         exit(0);
93     }
94     else 
95     {
96         fprintf(stderr, "Unknown option: -%s\n", name);
97         exit(1);
98     }
99     return 0;
100 }
101
102 struct options_t options[] =
103 {{"o","output"},
104  {"V","version"},
105  {"i","ignore"},
106  {"s","shapes"},
107  {"j","jpegquality"},
108  {"p","pages"},
109  {"w","samewindow"},
110  {"f","fonts"},
111  {0,0}
112 };
113
114 int args_callback_longoption(char*name,char*val) {
115     return args_long2shortoption(options, name, val);
116 }
117
118 int args_callback_command(char*name, char*val) {
119     if (!filename) 
120         filename = name;
121     else {
122         if(outputname)
123         {
124              fprintf(stderr, "Error: Do you want the output to go to %s or to %s?", 
125                      outputname, name);
126              exit(1);
127         }
128         outputname = name;
129     }
130     return 0;
131 }
132
133 void args_callback_usage(char*name)
134 {
135     printf("Usage: %s [-si] [-j quality] [-p range] [-P password] input.pdf [output.swf]\n", name);
136     printf("\n");
137     printf("-p  --pages=range          Convert only pages in range\n");
138     printf("-P  --password=password    Use password for deciphering the pdf\n");
139     printf("-s  --shapes               Don't use SWF Fonts, but store everything as shape\n");
140     printf("-i  --ignore               Ignore draw order (makes the SWF file smaller)\n");
141     printf("-j  --jpegquality=quality  Set quality of embedded jpeg pictures (default:85)\n");
142     printf("-v  --verbose              Be verbose. Use more than one -v for greater effect\n");
143     printf("-w  --samewindow           Don't open a new Browser Window for Links in the SWF\n");
144     printf("-f  --fonts                Store full fonts in SWF. (Don't reduce to used characters)\n");
145     printf("-V  --version              Print program version\n");
146 }
147
148 int main(int argn, char *argv[])
149 {
150     srand48(time(0));
151     processargs(argn, argv);
152     initLog(0,-1,0,0,-1,loglevel);
153     if(!outputname)
154     {
155         fprintf(stderr, "Please use -o to specify an output file\n");
156         exit(1);
157     }
158
159     // test if the page range is o.k.
160     is_in_range(0x7fffffff, pagerange);
161
162     if (!filename) {
163         args_callback_usage(argv[0]);
164         exit(0);
165     }
166
167     logf("<verbose> reading data files from %s\n", DATADIR);
168     //TODO: use tempnam here. Check if environment already contains a
169     //T1LIB_CONFIG.
170     putenv( "T1LIB_CONFIG=/tmp/t1lib.config.tmp");
171     FILE*fi = fopen("/tmp/t1lib.config.tmp", "wb");
172     fprintf(fi, "FONTDATABASE=%s/FontDataBase\n", DATADIR);
173     fprintf(fi, "ENCODING=%s:.\n", DATADIR);
174     fprintf(fi, "AFM=%s:.\n", DATADIR);
175     fprintf(fi, "TYPE1=%s:.\n", DATADIR);
176     fclose(fi);
177     /* initialize t1lib */
178     T1_SetBitmapPad( 16);
179     if ((T1_InitLib(NO_LOGFILE)==NULL)){
180         fprintf(stderr, "Initialization of t1lib failed\n");
181         exit(1);
182     }
183     unlink("/tmp/t1lib.config.tmp");
184
185     pdfswf_init(filename, password);
186     pdfswf_setoutputfilename(outputname);
187
188     int pages = pdfswf_numpages();
189     int t = 1;
190     for(t = 1; t <= pages; t++) 
191     {
192         if(is_in_range(t, pagerange))
193         pdfswf_convertpage(t);
194     }
195     pdfswf_performconversion();
196
197     pdfswf_close();
198     return 0;
199 }
200
201