2 main routine for pdf2pdf(1)
4 Part of the swftools package.
6 Copyright (c) 2009 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"
28 #include "../lib/args.h"
29 #include "../lib/os.h"
30 #include "../lib/gfxsource.h"
31 #include "../lib/gfxdevice.h"
32 #include "../lib/gfxpoly.h"
33 #include "../lib/devices/rescale.h"
34 #include "../lib/devices/polyops.h"
35 #include "../lib/devices/pdf.h"
36 #include "../lib/readers/image.h"
37 #include "../lib/readers/swf.h"
38 #include "../lib/pdf/pdf.h"
39 #include "../lib/log.h"
41 static gfxsource_t
*driver
= 0;
43 static int maxwidth
= 0;
44 static int maxheight
= 0;
45 static char * outputname
= 0;
46 static int loglevel
= 3;
47 static char * pagerange
= 0;
48 static char * filename
= 0;
49 static const char * format
= "ocr";
51 int args_callback_option(char*name
,char*val
) {
52 if (!strcmp(name
, "o"))
57 else if (!strcmp(name
, "v"))
60 setConsoleLogging(loglevel
);
63 else if (!strcmp(name
, "f"))
68 else if (!strcmp(name
, "q"))
71 setConsoleLogging(loglevel
);
74 else if (name
[0]=='p')
78 } while(*name
== 32 || *name
== 13 || *name
== 10 || *name
== '\t');
87 else if (!strcmp(name
, "s"))
90 fprintf(stderr
, "Specify input file before -s\n");
94 char*c
= strchr(s
, '=');
98 driver
->setparameter(driver
, s
,c
);
100 driver
->setparameter(driver
, s
,"1");
105 else if (!strcmp(name
, "X"))
107 maxwidth
= atoi(val
);
110 else if (!strcmp(name
, "Y"))
112 maxheight
= atoi(val
);
115 else if (!strcmp(name
, "V"))
117 printf("pdf2swf - part of %s %s\n", PACKAGE
, VERSION
);
122 fprintf(stderr
, "Unknown option: -%s\n", name
);
128 static struct options_t options
[] = {
140 int args_callback_longoption(char*name
,char*val
) {
141 return args_long2shortoption(options
, name
, val
);
144 int args_callback_command(char*name
, char*val
) {
149 if(strstr(filename
, ".pdf") || strstr(filename
, ".PDF")) {
150 msg("<verbose> Treating file as PDF");
151 driver
= gfxsource_pdf_create();
152 } else if(strstr(filename
, ".swf") || strstr(filename
, ".SWF")) {
153 msg("<verbose> Treating file as SWF");
154 driver
= gfxsource_swf_create();
155 } else if(strstr(filename
, ".jpg") || strstr(filename
, ".JPG") ||
156 strstr(filename
, ".png") || strstr(filename
, ".PNG")) {
157 msg("<verbose> Treating file as Image");
158 driver
= gfxsource_image_create();
160 driver
= gfxsource_pdf_create();
165 fprintf(stderr
, "Error: Do you want the output to go to %s or to %s?",
174 void args_callback_usage(char *name
)
177 printf("Usage: %s <pdffile>\n", name
);
179 printf("-h , --help Print short help message and exit\n");
180 printf("-v , --verbose Be verbose. Use more than one -v for greater effect.\n");
181 printf("-p , --pages <pages> Pages to convert\n");
182 printf("-X , --width <width> Make sure the output pdf is <width> pixels wide\n");
183 printf("-Y , --height <height> Make sure the output pdf is <height> pixels high\n");
184 printf("-s , --set <parameter>=<value> Set <parameter> to <value>\n");
185 printf("-o , --output <filename> Write output to file <filename>.\n");
186 printf("-V , --version Print version info and exit\n");
190 int main(int argn
, char *argv
[])
192 processargs(argn
, argv
);
193 initLog(0,-1,0,0,-1,loglevel
);
196 fprintf(stderr
, "Please specify an input file\n");
203 outputname
= stripFilename(filename
, ".print.pdf");
204 msg("<notice> Output filename not given. Writing to %s", outputname
);
209 fprintf(stderr
, "Please use -o to specify an output file\n");
213 is_in_range(0x7fffffff, pagerange
);
215 driver
->setparameter(driver
, "pages", pagerange
);
218 args_callback_usage(argv
[0]);
222 gfxdocument_t
* doc
= driver
->open(driver
, filename
);
223 //doc->setparameter(doc, "drawonlyshapes", "1");
224 doc
->setparameter(doc
, "disable_polygon_conversion", "1");
227 msg("<error> Couldn't open %s", filename
);
231 gfxdevice_t _out
,*out
=&_out
;
232 gfxdevice_pdf_init(out
);
235 gfxdevice_removeclippings_init(&wrap, out);
239 if(maxwidth
|| maxheight
) {
240 gfxdevice_rescale_init(&rescale
, out
, maxwidth
, maxheight
, 0);
242 out
->setparameter(out
, "keepratio", "1");
246 for(pagenr
= 1; pagenr
<= doc
->num_pages
; pagenr
++)
248 if(is_in_range(pagenr
, pagerange
)) {
249 gfxpage_t
* page
= doc
->getpage(doc
, pagenr
);
250 out
->startpage(out
, page
->width
, page
->height
);
251 page
->render(page
, out
);
256 gfxresult_t
*result
= out
->finish(out
);
258 if(result
->save(result
, outputname
) < 0) {
261 result
->destroy(result
);
264 driver
->destroy(driver
);